View Full Version : my css


YellowSnow
07-17-2003, 01:42 PM
im having problems with my css..... basically what i specify isnt coming up... i.e. = not working lol!
<link rel="stylesheet" type="text/css" href="style.css">
thats what i put too each page...

and my css i here:

font-weight: normal;
font-color: #400000;
font-size: 11px;
A:link
{ text-decoration: none; [none] color:#0080FF; }
A:visited
{ text-decoration: none; [none] color:#0080FF; }
A:active
{ text-decoration: none; [none] color:#0080FF; }
A:hover
{ text-decoration: underline; color:#0059B3;)



background-image: url(yourimage.gif);
background-color: #F6E26E;

cursor: crosshair; }

h1 {font-family: "Trebuchet MS, Verdana, Tahoma";
color: #400000; }

p {font-family: "Trebuchet MS, Verdana, Tahoma";
color: #808080;

body
{ background-color: #F6E26E;
background-image: url(value);

font-family: "Trebuchet MS, Verdana, Tahoma";
color: #400000 ;
letter-spacing: value;
font-weight: lighter;
font-size: 11pt;


direction:rtl;
background-attachment:fixed;
scrollbar-arrow-color: #00162D;
scrollbar-track-color: #00162D;
scrollbar-face-color: #F6E26E;
scrollbar-highlight-color: #91C8FF;
scrollbar-3dlight-color: #F6E26E;
scrollbar-darkshadow-color: #F6E26E;
scrollbar-shadow-color: #00162D;
}

td
{ font-family: "Trebuchet MS, Verdana, Tahoma";
color: #400000;
}

input, textarea
{ background: #F6E26E ;
font-family: "Trebuchet MS, Verdana, Tahoma";
color: #400000;
border-style: solid;
border-color: #00002B;
border-width: 1;}

im having difficulties with <P>text</p> ... it doesnt appear as i specify in my css.... as well as table text... and basically.. text in general, besides getting the font right, the colour and size is always wrong...

im sure its a problem in my css but i cant figure it out.... plz help if u can (ima noob) .. thnx

pb&j
07-17-2003, 02:11 PM
it looks like you mixed up the body css a bit and forgot an ending bracket and forgot to take out the [values]. try this...

A:link
{ text-decoration: none; color:#0080FF; }
A:visited
{ text-decoration: none; color:#0080FF; }
A:active
{ text-decoration: none; color:#0080FF; }
A:hover
{ text-decoration: underline; color:#0059B3;)

h1 {font-family: "Trebuchet MS, Verdana, Tahoma";
color: #400000; }

p {font-family: "Trebuchet MS, Verdana, Tahoma";
color: #808080; }

body
{font-weight: normal;
font-size: 11px;
background-image: url(yourimage.gif);
background-color: #F6E26E;
cursor: crosshair;
font-family: "Trebuchet MS, Verdana, Tahoma";
color: #400000 ;
direction:rtl;
background-attachment:fixed;
scrollbar-arrow-color: #00162D;
scrollbar-track-color: #00162D;
scrollbar-face-color: #F6E26E;
scrollbar-highlight-color: #91C8FF;
scrollbar-3dlight-color: #F6E26E;
scrollbar-darkshadow-color: #F6E26E;
scrollbar-shadow-color: #00162D;}

td
{ font-family: "Trebuchet MS, Verdana, Tahoma";
color: #400000;
}

input, textarea
{ background: #F6E26E ;
font-family: "Trebuchet MS, Verdana, Tahoma";
color: #400000;
border-style: solid;
border-color: #00002B;
border-width: 1;}