• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Quick IE 6 CSS issue

Bulldog13

Golden Member
Here is the CSS :

a.cleanborders:visited {color:#000000; background-color:#000000;background:#000000;text-decoration:none;}

Here is the HTML :

<a href="#" class="cleanborders" onMouseDown="return handleMPDown()"><img name="jsbuttonp" src="images\prevarrow.gif"></a>

In firefox the border around the button comes up black, which is what I want. In IE 6 the border comes up purple after I have clicked on the image link.

How do I get the visited color to change in both ?
 
Just remember that ALL your linked images will behave this way now. You can specify it more with:

.cleanborders a img { border:none; }

I like to do a global reset and start from scratch, that way I can dictate how everything looks. Google "yahoo css reset" if you don't know what it is/does.
 
Here is what you *want* to do. Put in script to load one CSS for IE browsers and another CSS for every other browser. IE sucks so bad.
 
Back
Top