Home › Forums › Automattic › ThemeMin › possible to change menu link colors; post title colors?
Tagged: custom font colour
-
AuthorPosts
-
CrowWLadyI do have css upgrade; my blog http://www.hedgewicket.net
The blog I need help with is hedgewicket.netFebruary 5, 2014 at 3:34 pm #146381Hi there, sure, I can help with that. I’ve moved this thread to the ThemeMin forum since I see that’s what you’re using.
To change the colour of post titles, try adding this to your custom CSS under Appearance > Customize > CSS:
.entry-title, .entry-title a {
color: #xxxxxx;
}
.entry-title a:hover {
color: #xxxxxx;
}Replace xxxxxx with any colour codes you like.
The second line above sets the colour of post title when you put your mouse over them. If you don’t want the rolled-over post titles to have a different colour, then you can just use this one piece of CSS instead of the separate ones:
.entry-title, .entry-title a:hover, .entry-title a {
color: #949CDF;
}Learning how to target your site’s CSS will help you make certain design changes. Here are some very helpful posts that will help you customize your site with CSS:
https://dailypost.wordpress.com/2013/07/25/css-selectors/
http://dailypost.wordpress.com/2013/06/21/css-intro/
If CSS is new to you, we also have some resources for learning more about it here:
I’ll reply to your question about menu link colours separately.
February 5, 2014 at 4:05 pm #146384To change the colour of the menu items – and other elements that currently use the same yellowish colour so they all match – add this to your custom design and change E4EBBC to whatever colour you’d like.
#access a:hover, #access .current_page_item > a, #access .current_page_ancestor > a, #access .current-menu-item > a, #access .current-menu-ancestor > a, .slides a:hover, .slider-nav a:hover, .entry-title a:hover, .entry-meta-wrap a:hover, .featured-wrap a:hover, .entry-meta-wrap .post-comment a:hover, .entry-meta a:hover, .post-nav a:hover, #content nav .post-nav a:hover, .commentlist .comment-time a:hover, .widget_flickr #flickr_badge_uber_wrapper a {
color: #E4EBBC;
}To change the un-rolled over menu item colour, add this as well, changing xxxxxx to whatever colour you like:
#access a {
color: #xxxxxx;
}Let me know if you need further help.
February 5, 2014 at 9:01 pm #146425
CrowWLadyThank you so much!
February 5, 2014 at 10:17 pm #146430My pleasure! I’m marking this thread as resolved and closing it, but feel free to start a new one if you need help with anything else.
-
AuthorPosts
The topic ‘possible to change menu link colors; post title colors?’ is closed to new replies.