Change a:active color in CSS
- on 03.11.10
- enart.gazages.com
- Digg
- Del.icio.us
- edit
I see the a:acive link color cannot be changed in the CSS editor, and will be the same color as the hover text.
How do i change it for body, alt text 1 and alt text 2?
Thanks
Late
Right i have added the following code to the extra CSS attributes at the end of the main css style sheet editor and it worked perfectly.
Many thanks.
/* ***** Added to change a:active links to correct colour. */
a:active
{
color: #2370B6;
}
.alt1 a:active, .alt1Active a:active, .alt2 a:active, .alt2Active a:active,
{
color: #2370B6;
}
Please help
I tried:
a:active {color: #ffffff}
.alt1, .alt1Active
{
background: #282828;
color: #d0d0d0;
a:active {color:#FFFFFF};
}
.alt1 a:link, .alt1_alink, .alt1Active a:link, .alt1Active_alink
{
color: #2370B6;
}
.alt1 a:visited, .alt1_avisited, .alt1Active a:visited, .alt1Active_avisited
{
color: #2370B6;
}
.alt1 a:hover, .alt1 a:active, .alt1_ahover, .alt1Active a:hover, .alt1Active a:active, .alt1Active_ahover
{
color: #F0E80A;
}
Though adding it under Additional CSS Definitions is the most appropriate place to do this.
You need to add it to the Additional CSS Definitions at the bottom of the page, not the small textbox to the right of the CSS editor for Alt1.
#If you have any other info about this subject , Please add it free.# |