Please advise custom CSS to change all hyperlink colors. I managed to change some but when I visit a page, the link color changes back again, and the links from the Titles of blog posts are the old color. http://inghamnorthqld.com.au/local-news/ This is what I have in custom CSS now:- .header_wrapper .header{ background: #FFFFFF url('images/blackln.png') top center no-repeat; } a:link{ text-decoration: none; color: #0F4F11; } a:hover{ text-decoration: underline; color: #167F1A; } .tabbed .tabnav li a { display: none; } .star_rating, .review_desc, .article_rating, .r_rating{ display:none; visibility:hidden; height:0; } .footer .widget_inner { color: #006600; }
If you want to give same color for all anchor links then Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: a{color:red!important;} And for separate colors Code: .sidebar .review_thumb a:hover { color: your color value;} .content_wrapper .featured_content .f_post_content .f_post_title a { color: your color value;} .content_wrapper .featured_content .featured_thumb .review_desc a { color: your color value;} .footer_wrapper .footer_widget h5 { color: your color value;} .footer_wrapper .footer_widget a { color: your color value;} ..jcarousel-skin-tango li h3 a{color: your color value;}