View Full Version : Link colour in firefox


SteveBax
11-14-2006, 07:37 PM
Heres a link to my new site that I'm making:
http://www.leonafan.co.nr

Im using an i-frame and linking to a style sheet. When I open it in Internet Explorer it's fine but in firefox the links are blue. Any suggestions? :confused:

bourdelson
11-14-2006, 07:53 PM
The style tags and comment tags should not be in external style sheets. Also, you've forgotten to close the ending elements in your link declarations with semicolons, and had the scrollbar declarations with nothing but #COLOR filled in, so I removed those. This fixed style sheet should work. :)


A:link
{ text-decoration:none; color: #703734; cursor:crosshair; font-weight: normal;}
A:visited
{ text-decoration:none; color: #703734; cursor:crosshair; font-weight: normal; }
A:active
{ text-decoration:none; color: #703734; cursor:crosshair; font-weight: normal; }
A:hover
{ text-decoration:line-through; color: #703734; cursor:crosshair; font-weight: bold;}

body { background-color:#3C0300;
font-family: Verdana;
color: #703734;
font-weight: normal;
font-size:7pt;
}
#content {
position:absolute;
width:485px;
height:689px;
z-index:1;
left: 380px;
top: 451px;
}
#sidebar {
position:absolute;
width:211px;
height:688px;
z-index:2;
left: 144px;
top: 451px;
}
h1 {
font-size: 7pt;
font-family: verdana;
color: #703734;
padding:2px;
padding-left:10px;
text-transform:uppercase;
letter-spacing:3px;
line-height:11pt;
background-color:#3C0300;
border-bottom:3px solid #703734;
}

SteveBax
11-14-2006, 08:33 PM
No it still doesent work

bourdelson
11-14-2006, 08:54 PM
It still looks the same because those changes weren't made to your style sheet. If you use the style sheet I fixed, then it will look the way you have classified.

SteveBax
11-14-2006, 10:09 PM
Yay, it's working. Thanks soooo much :D

bourdelson
11-14-2006, 10:16 PM
You're welcome. :)