Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #300778

    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.

    Site – http://strongman.codelessme.net

    #301153

    Hi David!

    Please add following code to Quick CSS as well

    strong.news-headline:hover span.news-time {
    text-decoration: none!important;
    }

    Cheers!
    Yigit

    #302180

    Hey Yigit –

    No dice. Still showing the underline under the date.

    #303000

    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

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.