NewbiDoobie
Technical User
I cannot seem to change the color of my link via the stylesheet.
This is the statement I am trying to change the link to blue with is:
<p class="main">Go ahead, click on <a class="SubSectLink" href="javascript:document.frmDemo.submit();">Try It Now!</a></p>
The stylesheet looks like this:
<STYLE>
.main
{
FONT-SIZE: 11px;
FONT-FAMILY: Arial, Helvetica, sans-serif
}
.SubSectionHderBlk
{
FONT-WEIGHT: bold;
FONT-SIZE: 11px;
FONT-FAMILY: Arial, Helvetica, sans-serif
}
.SubSectionHderRed
{
FONT-WEIGHT: bold;
FONT-SIZE: 11px;
COLOR: #cc0000;
FONT-FAMILY: Arial, Helvetica, sans-serif
}
.header
{
FONT-WEIGHT: bold;
FONT-SIZE: 14px;
FONT-FAMILY: Arial, Helvetica, sans-serif
}
BODY
{
BACKGROUND-COLOR: #cccccc
}
A:link
{
FONT-WEIGHT: bold;
COLOR: blue;
TEXT-DECORATION: underline
}
A:visited
{
COLOR: #000000;
TEXT-DECORATION: none
}
A:hover
{
COLOR: #000000;
TEXT-DECORATION: underline
}
A:active
{
COLOR: #000000;
TEXT-DECORATION: none
}
A.SubSectLink
{
COLOR: blue;
TEXT-DECORATION: underline
}
</STYLE>
This is the statement I am trying to change the link to blue with is:
<p class="main">Go ahead, click on <a class="SubSectLink" href="javascript:document.frmDemo.submit();">Try It Now!</a></p>
The stylesheet looks like this:
<STYLE>
.main
{
FONT-SIZE: 11px;
FONT-FAMILY: Arial, Helvetica, sans-serif
}
.SubSectionHderBlk
{
FONT-WEIGHT: bold;
FONT-SIZE: 11px;
FONT-FAMILY: Arial, Helvetica, sans-serif
}
.SubSectionHderRed
{
FONT-WEIGHT: bold;
FONT-SIZE: 11px;
COLOR: #cc0000;
FONT-FAMILY: Arial, Helvetica, sans-serif
}
.header
{
FONT-WEIGHT: bold;
FONT-SIZE: 14px;
FONT-FAMILY: Arial, Helvetica, sans-serif
}
BODY
{
BACKGROUND-COLOR: #cccccc
}
A:link
{
FONT-WEIGHT: bold;
COLOR: blue;
TEXT-DECORATION: underline
}
A:visited
{
COLOR: #000000;
TEXT-DECORATION: none
}
A:hover
{
COLOR: #000000;
TEXT-DECORATION: underline
}
A:active
{
COLOR: #000000;
TEXT-DECORATION: none
}
A.SubSectLink
{
COLOR: blue;
TEXT-DECORATION: underline
}
</STYLE>