x

Visited Links Color

Hello!

I currently have this code in the header of my SEO page in order to remove the underline from links:

<style>

div.paragraph a, #wsite-search-list div.paragraph a
{
text-decoration: none !important;
border-bottom: none !important;
}

</style>

I'm wondering if there is anything I can modify/add in order to modify the color of visited links (as opposed to links that have not been visited yet).

Update: The following works for me, but I don't know how to tie it my paragraph style (so that I don't have to make HTML boxes when editing:

#link_bar a:visited { color:#ff0000; }

Thank you for any help!

508 Views
Message 1 of 4
Report
3 REPLIES 3
Square

Try something like this:

#link_bar a:visited, .paragraph a:visited { color:#ff0000; }

The way it was originally would only do a tags within an element that has the ID of #link_bar.

492 Views
Message 2 of 4
Report

Hello Adam,

Thank you for trying, but it does not work unfortunately.

Does anyone else have any ideas?

Thank you in advance,

Edgar

490 Views
Message 2 of 4
Report
Square

Hi @venbrime Can you please post a link to your site so others can have a look? Thanks! 

477 Views
Message 2 of 4
Report