This is a migrated thread and some comments may be shown as answers.

Visited Hyperlink Formatting in IE6

4 Answers 78 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Aaron
Top achievements
Rank 1
Aaron asked on 11 Jun 2008, 02:20 PM
For some reason with the default skin there seems to be a styling issue with visited  hyperlinks.  They turn black against the dark grey border rather than staying white.  Any suggestions would be greatly appreciated.

4 Answers, 1 is accepted

Sort by
0
Paul
Telerik team
answered on 12 Jun 2008, 08:03 AM
Hello Aaron,

We tried to reproduce the reported issue on our side, but to no avail. Could you please tell if you have some global CSS styles applied to your page; they might override the menu styles.

Greetings,
Paul
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Wendelstam
Top achievements
Rank 1
answered on 27 Aug 2008, 09:20 PM
Hi

I have the same problem. My menu is located on a MasterPage that has a quite standard CSS stylesheet associated with the page containing the following code (see below).

I havent been able to fix this issue, and it only appears in IE6.
Its quite urgent to get this resolved since many of our end users still uses IE6 and the menu becomes almost unreadable when the visited links are soo similar to the background color.

Thanks in advance

Best regards
Johan

a  
{  
    font-family: Verdana;  
    font-size: 10px;  
    font-weight: normal;  
    font-style: normal;  
    color: #000000;  
}  
a:link  
{  
    font-family: Verdana;  
    font-size: 10px;  
    font-weight: normal;  
    color: #666666;  
    text-decoration: none;  
}  
a:visited  
{  
    font-family: Verdana;  
    font-size: 10px;  
    font-weight: normal;  
    color: #666666;  
    text-decoration: none;  
}  
a:active  
{  
    font-family: Verdana;  
    font-size: 10px;  
    font-weight: normal;  
    color: #666666;  
    text-decoration: none;  
}  
a:hover  
{  
    font-family: Verdana;  
    font-size: 10px;  
    font-weight: normal;  
    color: #E9991B;  
    text-decoration: underline;  
0
Yana
Telerik team
answered on 28 Aug 2008, 01:54 PM
Hello Johan,

Please add the following css styles to your page to fix the described issue:
 
.RadMenu a.rmLink {  
    color#000000;  
}      
.RadMenu a.rmLink:hover {  
    text-decorationnone;  

Hope this helps.

Best wishes,
Yana
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Wendelstam
Top achievements
Rank 1
answered on 29 Aug 2008, 01:29 PM
Hi again

It solved the described issue, but I soon found a second quite similar problem, my selected menu item (the page that is currently visited has white background and the link on that menuitem becomes the same color as the color that i specified (your solution above) which is white and are therefore invisible.

Thanks again
Johan


EDIT:

If managed to solve it:
Add to  this aswell



.RadMenu

a.rmFocused, .RadMenu_Default a.rmExpanded

{

background-color: #fff;

color: #000;

cursor: hand;

}

Tags
Menu
Asked by
Aaron
Top achievements
Rank 1
Answers by
Paul
Telerik team
Wendelstam
Top achievements
Rank 1
Yana
Telerik team
Share this question
or