Post header color change
-
I am trying to update the post title color on http://www.heysis.org
I have the following code:
.entry-title {color: #fdcc4c; text-align: center; font-size: 50px;}it worked for the alignment and the size but not the color. Can you advise what I may be doing wrong?
Also, is there a way to change the color of that black menu bar?
-
the color might be formatted for the link;
try (untested as I can’t check this in your ‘coming soon’ page):
.entry-title a { color: pink; }try working with a browser inspection tool to find out how these elements are formatted.
or remove the ‘comind soon’ to allow for investigating your site’s CSS.
I removed the coming soon page.
try to use some more specific CSS;
example:header .entry-title a { color: #fdcc4c; } header .entry-title a:hover { color: purple; }Great! that worked for the main page but any idea how to get it to change when you click on the post the title within the post
And also my second question was the menu bar is there a way to make it another color other than black.
get it to change when you click on the post the title within the post
.singular .entry-title { color: #ff5eae; }the menu bar is there a way to make it another color other than black.
this has probably been already answered in the related topics: https://ww.wp.xz.cn/search/Twenty+Eleven+color+menu+bar?forums=1
you are so awesome!! thank you for your help!
The topic ‘Post header color change’ is closed to new replies.