
Apr 2nd, 2007, 15:38
|
 |
SuperMember
|
|
Join Date: Mar 2007
Location: USA
Posts: 406
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
|
A.Visited problems...
I am having problems on my website with my links. I have links for my navigational bar which are white, and so my visited links stay white when the user clicks. My problem is the links inside my text are white now instead of blue. So I have created a style for my links on my page, which work until they are clicked on. Once you have visited the page the style no longer applies...
Here's my stylesheet
- Code: Select all
body {background-image: url("images/BG.gif");}
A:Link { text-decoration: none; font-family: Verdana, Arial, Helvetica, sans-serif; color: #FFFFFF; font-size: 12px;}
A:visited { text-decoration: none; font-family: Verdana, Arial, Helvetica, sans-serif; color: #FFFFFF; font-size: 12px;}
A:hover {background-color: white;
text-decoration: none; font-family: Verdana, Arial, Helvetica, sans-serif; color: #000000; font-size: 12px;}
p.mc {text-indent: 25px; text-align: left; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: black;
margin-left: 20px; margin-top: 15px; margin-bottom: 15px; margin-right: 20px;}
td.mc {vertical-align: top; background-color: #FFFFFF;}
td.nav {vertical-align: top; text-align: center; background-image: url("images/EndNav.jpg");}
.style1 {
color: #28719C;
font-weight: bold;
}
A.norm {color:#0000FF; text-decoration: underline;} // in text link
h1 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 16px; color: #000000; font-weight: 600; margin-left: 25px; margin-top: 25px;}
And ideas?
|