how can I change the title color of my pages? not the header, but the page title
-
Hi, I have my page titles but I cant change the color of it.
My text is dark gray and my page title is white.
¿How can I change the page titles (not the header) color?Thank you,
AlineThe blog I need help with is: (visible only to logged in users)
-
Hi Aline,
It looks like that white page title color is hard-coded into the theme. Since you have the Premium plan, you can change it with CSS.
Add this bit of code into your Custom CSS editor:
body h1{ color: #ccc; }Next, pick out a color and find its hex value. I like this tool:
http://www.colorhexa.com/color-names
Replace the “#ccc” in that code with the hex value for your chosen color.
You can adjust the color of the text in your page’s body using the Text Color tool while editing the page:
http://en.support.wordpress.com/visual-editor/#text-color
Best,
-Alex G.
-
Thank you Alex, Got it!!
One last question: is it possible to lower the title a little bit? It kind of overlaps my backround, so a few cm lower would be great.
How can I do it?Thank you!
-
Glad that helped. :)
To lower it, try adding a bit of margin to the top of that same element:
body h1 { color: #696969; <strong>margin-top: 40px;</strong> }Best,
-Alex G.
-
- The topic ‘how can I change the title color of my pages? not the header, but the page title’ is closed to new replies.