-
AuthorPosts
-
November 10, 2014 at 5:24 pm #142098
I tried adding the following CSS code to change the header under Appearance -> Customize -> Custom -> CSS, but nothing happened.
.x-logobar-inner {
background-color: #5b42ff;
}I also need to know how to change the header text color to white, and how to upload a logo to the left of the text.
I’m new to all of this. Thank you
November 11, 2014 at 4:58 am #142353Hi,
Thanks for writing in!
You can try the code below.
You can add this under Custom > CSS in the Customizer.
body .x-navbar { background-color: #5b42ff; }
Hope that helps. 🙂
November 11, 2014 at 6:27 pm #142950That worked! Thank you.
Could you also help with one more thing? How do I change the color of the text in the header to white?
November 11, 2014 at 6:42 pm #142958Also, I switched to a child theme so should I be putting this code in /peoplestrustservices/wp-content/themes/x-child-integrity-light/framework/style.css?
Thanks again!
November 12, 2014 at 7:18 am #143278Hey There,
yes put the custom css in the style.css above the @import statement. For changing the color change the code to following:
body .x-navbar { background-color: #5b42ff; color: #FFFFFF; }
If you need anything else let us know!
November 12, 2014 at 7:33 pm #143904I don’t know if that worked for the font color because the text with my site name in the navbar changed to a link. I changed to the x-child-integrity-dark theme, which had a black background for the navbar with white text for the text.
I made some changes then tried to change to a dark purple background color for the navbar. Now the text has changed to a link again so I can’t have white for the text color. How do I fix the site name text so it isn’t a link? This the site name text that I entered in WordPress General settings.
November 13, 2014 at 6:07 am #144177Hey There,
You don’t have to remove the link from the navbar you can just use a different CSS class to target the link:
body .x-navbar a { color: #FFFFFF; }
November 13, 2014 at 2:50 pm #144611The text is back to normal again. Thank you anyway. I put the code you recommended back in style.css
The change does not show up right away on my site, but I will wait a while to see if it takes.
Thanks again
November 14, 2014 at 5:23 am #144985Hey There,
always make sure to clear your cache after doing some changes otherwise you won’t see the changes instantly.
October 14, 2015 at 6:49 pm #625686Hi
I installed the salon/spa template and cant find how to change the logo at the top of the page (header?) to my logo.
Please help
October 14, 2015 at 9:40 pm #625820 -
AuthorPosts