View Full Version : no css


putnamehere
04-10-2006, 06:04 PM
if you go to my website http://www.phpcodes.co.uk/
in firefox the most of the style sheet dosent work.
Howeverin ie msot of it works... also the box as the bottom of this page
http://www.phpcodes.co.uk/show.php?script=rr&&scp=1
isent the colour i want it to be for both browsers.

my stle sheet




font { color: black; font-family:Verdana; font-size: 11px;}

p { color: #29A2C6; font-family:Verdana; font-size: 15px; }

a:link { text-decoration: none; color: "#Ff6600"; font-family:Verdana; font-size: 13px; font-style: none;}
a:visited { text-decoration: none; color: "#ff6600";font-family:Verdana; font-size: 13px; font-style: none;}
a:hover {color: "#FFFFff"; font-family:Verdana; font-size: 13px; font-style: none;}
a:active {color: "#29A2C6"; font-family:Verdana; font-size: 13px; font-style: none;}
.small { color: gray; font-family:Verdana; font-size: 11px; }

input
{
color: #666666;
background: #FFcc66;
border: 1px solid #666666
}

textarea
{
color: #666666;
background: #FFcc66;
border: 1px solid #666666
font: color: black; font-family:Verdana; font-size: 11px;
}

#borderTable {
border-width: 1px;
border-style: solid;
border-color: #000000;
}

.header { color: #29A2C6; font-family:Verdana; font-size: 16px; }



label
{
width: 4em;
float: left;
text-align: right;
margin-right: 0.5em
display: block
}

.submit input
{
margin-left: 4.5em;
}


fieldset
{
border: 1px solid red;
width: 20em
}

legend
{
color: red;
background: red;
border: 1px solid black;
padding: 2px 6px
}

.red { color: red; font-family:Verdana; font-size: 12px; }
.green { color: green; font-family:Verdana; font-size: 12px; }

fieldsety
{
border: 1px solid blue;
width: 20em
}

Arwen
04-10-2006, 06:37 PM
You don't use body { blah blah } in your stylesheet...do you?

And the links should look like this:

a:link { text-decoration: none; color: #Ff6600; font-family:Verdana; font-size: 13px; font-style: none;}
a:visited { text-decoration: none; color: #ff6600;font-family:Verdana; font-size: 13px; font-style: none;}
a:hover {color: #FFFFff; font-family:Verdana; font-size: 13px; font-style: none;}
a:active {color: #29A2C6; font-family:Verdana; font-size: 13px; font-style: none;}

Don't use these " " things. ;)