View Full Version : help *hopeless sigh*


doodlebug448
11-11-2003, 03:43 AM
i have <LINK href="css.css" rel="stylesheet" type="text/css"> on my main.html page and on my bottom.html page but its not working this is on my css.css page

A:link
{ text-decoration: value; underline overline, color:#FFFFFF; }
A:visited
{ text-decoration: value; line-through, color:#844200; }
A:active
{ text-decoration: value; underline overline, color:#FFFFFF; }
A:hover
{ text-decoration: value; line-through, color:#FFB5DE; }

background-image: main.gif;

h1 {font-family: value; comic sans ms color: value; #FFFFFF}


BODY
{
direction:;
background-attachment:fixed;
scrollbar-arrow-color: ffffff;
scrollbar-track-color: 844200;
scrollbar-face-color: FFB5DE;
scrollbar-highlight-color: FFB5DE;
scrollbar-3dlight-color: FFB5DE;
scrollbar-darkshadow-color: FFB5DE;
scrollbar-shadow-color: FFB5DE;
}
-->

MistressVivi
11-11-2003, 03:51 AM
do you have <style> at the start and </style> at the end?

Rosey
11-11-2003, 03:54 AM
When it says value, that's where you put the value.
The background image should be in the body.
I'm not sure for the background image, I may have that wrong, but I know the links work.


A:link
{ text-decoration: underline overline; color:#ffffff; }
A:visited
{ text-decoration: line-through; color:#844200; }
A:active
{ text-decoration: underline overline; color:#ffffff; }
A:hover
{ text-decoration:line-through; color:#FFB5DE; }



h1 {font-family:comic sans ms; color:#FFFFFF;}


BODY
{
background-image: main.gif;
background-attachment:fixed;
scrollbar-arrow-color: ffffff;
scrollbar-track-color: 844200;
scrollbar-face-color: FFB5DE;
scrollbar-highlight-color: FFB5DE;
scrollbar-3dlight-color: FFB5DE;
scrollbar-darkshadow-color: FFB5DE;
scrollbar-shadow-color: FFB5DE;
}

pb&j
11-11-2003, 04:50 AM
Originally posted by Rosey
background-image: main.gif;
background-image: url("main.gif");

Rosey
11-11-2003, 05:17 AM
Thanks, I knew the other one didn't quite look right.