How can I add blue underline links to posts and pages only?

Posted in: Newspaper
Post count: 7

Hello,

I have just added this code to underline my links in blue:

a {
color: #4b95ea;
text-decoration: underline #4b95ea;
}

But I don’t want the Main Menu/Sub Menus, Side Widget Links, or Categories in side bar to have underline blue links?

Can you help please?

Thanks
Irene

Post count: 18283

Hello !

The problem is that your css code targets all the links on the page. So you will need to target better your links on the page. Here are some usefull informations about it: https://www.w3schools.com/cssref/sel_target.asp

Thank you !

Post count: 7

Hello Vlad,

Thanks for the suggestion. I finally found the solution with this CSS code:

p a {
text-decoration: underline;
color: #4b95ea !important;
}

Irene

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.