Tagged: news-headline
Hi guys –
I scoured the forum but didn’t find an answer. I applied the underline to strong.news-headline:ahover, but it is also applying it to the date/time (span.news-time) underneath. I don’t want it to. I have targeted just that with a text-decoration of none on hover but it isn’t applying.
Hi David!
Please add following code to Quick CSS as well
strong.news-headline:hover span.news-time {
text-decoration: none!important;
}
Cheers!
Yigit
Hey Yigit –
No dice. Still showing the underline under the date.
Hey!
That’s expected, it’s happening because the span date is inside the strong element, i’d suggest changing the structure in /framework/php/class-framework-widgets.php, around line 530, wrap the title with another span so you can target that only:
strong.news-headline:hover span.title {
text-decoration: underline !important;
}
Best regards,
Josue