Problem with links

Philippe

New Member
I have a problem with a menu. The links are colored light blue but once a link is clicked it becomes dark purple and when I open the page with that menu again the links I already clicked stay dark purple. So the links don't have the same color which is very unprofessional.

Who can help me solve this problem?

Philippe
 

love

New Member
Use css style, ('color') for the anchor tag.

i.e,

a:link, a:visited, a:hover, a:active{
color: #ccc;
}
 

PixelPusher

Super Moderator
Staff member
Use css style, ('color') for the anchor tag.

i.e,

a:link, a:visited, a:hover, a:active{
color: #ccc;
}

Love is correct. The colors you are seeing are the default browser colors.
Blue will be the "link and "active", red will be "hover", and purple will be the "visited" (hence why you are seeing it the next time to enter the site.

To change the defaults, use CSS. If you dont know CSS, take a look at the website w3schools.com. Perfect place for beginners.
 
Top