The blog post titles displayed by the combo widget are by default shown using the Main Content Heading Color.
I have changed these to blue, my Primary Color for links, via:
.main_color div .news-headline {
color: #2e3192 !important;
}
Whilst this works I am not convinced it’s right but it seems to be the only way I can alter the headline color to my Primary Color – I would have thought this might work, but it doesn’t.
.news-link a {
color: #2e3192 !important;
}
The problem is that the headlines are actually links to posts and under the Styling scheme I am using the Highlight Color is set to #3f3f3f, and so now these “news headlines” are blue to denote a link I want them to have a hover action, as all other site links do (or will) – how can I achieve this?
You can see the combo widget as modified here: http://dev.henleyherald.com/sport/
Hey zimbo,
I’m not sure if I understood your question or not but I think you are looking to set the hover colour of the news headlines in the sidebar? If so please try the following CSS:
.main_color div .news-headline:hover {
color: green !important;
}
Thanks,
Rikard