|
Talismanic -> Question about CSS and A{ Style/Color (2/16/2005 18:46:37)
|
I don't know much about CSS but can usualy alter existing sheets to suit my needs. However I have a problem I cannot figure out. I want to change the link colors for a the "sidetitle." <h2 align="center" class="sidetitle">Search</h2> The links in the rest of the page are colored and styled how I want them but for this section I want to make them white. I thought I could do it with the following but it didn't work.
.sidetitle {
font-family:verdana, arial, sans-serif;
color:#FFF;
font-size:11px;
font-weight:normal;
line-height:14px;
padding:2px;
margin-top:10px;
letter-spacing: .1em;
border-bottom:1px dotted #FFF;
text-align:center;
/* background:#FF9933; */
}
a.sidetitle:link{
color: White;
text-decoration: none
}
a.sidetitle:visited{
color: White;
text-decoration: none
}
a.sidetitle:hover{
color: Red;
text-decoration: underline;
}
|
|
|
|