Can someone please take a look at this and tell me what could be going wrong? It started about 2 hours ago, I'm in the process of developing a site, when suddenly the css goes nuts!
Everything looks right except my link colors. ALL of my visited links are using the visited link color specified in "footer"(regardless of what class they're assigned), and ALL of my visited links have the border specified in "NavBar"(regardless of what class they're assigned). I don't get it, I've been over and over this and I can't figure out what's going on. I feel like it's something small that I keep overlooking, but I can't find it.
I thought it might be come kind of weird caching in FF, but the same thing is happening in IE. Does anyone have any idea what could be causing this?
Hope This Helps!
ECAR
ECAR Technologies
"My work is a game, a very serious game." - M.C. Escher
Everything looks right except my link colors. ALL of my visited links are using the visited link color specified in "footer"(regardless of what class they're assigned), and ALL of my visited links have the border specified in "NavBar"(regardless of what class they're assigned). I don't get it, I've been over and over this and I can't figure out what's going on. I feel like it's something small that I keep overlooking, but I can't find it.
Code:
body {
background-image: url(images/bkg3.gif);
background-repeat: repeat-x;
background-position: left top;
background-color: White;
font-family: Arial, Helvetica, sans-serif;
color: Black;
font-size: 10px;
margin: 2px;
}
.Maintable {
width: 750px;
margin-top: 3px;
}
.MaintableTopBar{
background-color: White;
border-top: 1px solid Black;
font-size: 5px;
}
.MaintableBottomBar{
background-color: White;
border-bottom: 1px solid Black;
font-size: 5px;
}
.Nav{
color: #E31B23;
width: 560px;
}
.Nav a, a:visited{
color: #E31B23;
text-decoration: none;
}
.Nav a:hover{
color: #E31B23;
text-decoration: underline;
}
.NavBar{
background: url(images/bkg_nav.gif);
color: White;
font-size: 12px;
width: 520px;
height: 22px;
}
.NavBar a, a:visited{
color: White;
text-decoration: none;
border-left: 1px solid #E31B23;
border-right: 1px solid #E31B23;
border-top: 0px;
border-bottom: 0px;
padding-left: 5px;
padding-right: 5px;
}
.NavBar a:hover{
color: Yellow;
text-decoration: none;
border-left: 1px solid White;
border-right: 1px solid White;
border-top: 0px;
border-bottom: 0px;
}
.Content {
height: 550px;
width: 100%;
border-left: 1px solid Black;
border-right: 1px solid Black;
vertical-align: top;
background-color: White;
}
.FrontBox{
background-image: url(images/frontbox.gif);
height: 250px;
vertical-align: top;
padding: 15px;
padding-top: 10px;
}
.FrontBox p{
width: 555px;
padding-left: 10px;
}
.NewsBox{
background-image: url(images/newsbox2.gif);
width: 225px;
height: 200px;
vertical-align: top;
}
.NewsBox p{
padding-left: 10px;
padding-right: 10px;
}
.OrderBox{
width: 300px;
vertical-align: top;
padding-top: 110px;
padding-left: 50px;
}
.Footer {
font-size: 11px;
color: Gray;
padding-top: 5px;
}
.Footer a, a:visited{
color: Gray;
text-decoration: none;
}
.Footer a:hover{
color: #ff9900;
text-decoration: underline;
}
Hope This Helps!
ECAR
ECAR Technologies
"My work is a game, a very serious game." - M.C. Escher