How to remove underline from post looper element

Hello! I just added a default underline for links on my site using:

a:link

{
text-decoration: underline;
}

However, now my looper posts are also entirely underlined:

image

Is there a way to override this but still keep default underlines in the rest of my content?

I already tried inserting the below into the Element CSS tab.

a {
text-decoration: none;
}

Thank you!

On the top level element of the looper item (the one that has the looper consumer) in the Element CSS try:

$el, $el * {
    text-decoration: none;
}

If it still not works, try

$el, $el * {
    text-decoration: none !important;
}

If it still not works, a live example would be good, so that we can examine the output.

The second one did the trick, thanks so much!

You are most welcome @AgIsAmerica

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.