Forum Moderators: open

Message Too Old, No Replies

Back Button ?

Link font color changes to black on click

         

hunterkom

1:04 pm on Apr 18, 2002 (gmt 0)



Probably a silly question,

but why are my links changing to black when the back button is clicked?
I have them set to white on all attributes,
: link
: visited
: active

Initially they load correct and on a refresh.

tedster

3:43 pm on Apr 18, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hi hunterkom, and welcome to the Forums.

What browser is giving you this behavior? And can you post the relevant snippet from your css?

Filipe

4:48 pm on Apr 26, 2002 (gmt 0)

10+ Year Member



I had this problem before. Along with

:VISITED

Also use

:VLINK

Otherwise it might not work in some browsers.

toxictox

3:29 pm on Apr 30, 2002 (gmt 0)



Might try this instead:
<head>
<title>example</title>
<style>

.menu_link {font-family: verdana; font-size:8pt; color: #000000}
.menu_link:hover {font-family: verdana; font-size:8pt; color: #ffffff}
</style>
</head>

Now your hyperlinks should'nt get all messed up with other colors unless you are using a very old IE (IE -4) or ofcourse our beloved Netscape (6.0 is okay).

hunterkom

3:32 pm on Apr 30, 2002 (gmt 0)



This issue was solved thanks for your help everyone who replied.