Hello I was wondering if someone could help me. I recently started using iframes to make changes on one page instead of 30 and i notice that whatever i click on gets underlined. Is there a way to stop that so it looks "clean" Thanks in advance!
That is probably due to your css command specifying something like this:
Code:
a:link {
text-decoration: none;
}
which means that links are not going to be underlined. However, when links are visited, the :link pseudo class no longer applies and the default behaviour of underlined links kicks in again. Adding something like:
Code:
a:visited {
text-decoration: none;
}
should stop it. However, it is hard to say if that is it without seeing the actual problem code.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.