page not recognizing stylesheet

liunx

Guest
<link rel="stylesheet" href=http://www.webdeveloper.com/forum/archive/index.php/"style.css" type="text/css">

could someone help me out here. i have the stylesheet completed but i can't get the page to load it. I thought that the above line of code was right but i would greatly appreciate anyone pointing out what is wrong with it. And yes style.css is the name of the sheetyour line seems ok to me
it is possible that you have some errors inside css stylesheet that causes browser to ignore iti dont think thats what it is. but i can check again.Is the stylesheet in a subdirectory?nope same folder. its not going online until i can get it to work. tell me if you need me to post the code for the stylesheetWe need to see the style sheet.body{background-image:url(curve.bmp);background-repeat:repeat-y}


a:hover{font-size:30pt;text-decoration:underline;font-color:blue;border-top-color:blue;border-top-style:dashed;border-bottom-color:blue;border-bottom-style:dashed;border-bottom-width:thin;border-right-color:blue;border-right-style:dashed;border-right-width:thin;border-left-color:blue;border-left-width:thin;border-left-style:dashed;border-top-width:thin}

a:link{font-size:25pt;font-color:blue}

a:visited{font-size:25pt;font-color:blue}

.title{}

.text{position:absolute;top:200;left:180;width:400}

.banner{position:absolute;top:1;left:170}

.links{position:absolute;top:110;left:180}


its not much yet but i stopped working on it once i couldn't get it to load. i was just trying to get the skeleton of the page to load upLots of problems here, not one line is correct.

body{background-image:url(curve.bmp);background-repeat:repeat-y}
use only .gif and .jpg, the others are not fully supported.
always include a background-color when using images

a:hover{font-size:30pt;text-decoration:underline;font-color:blue;border-top-color:blue;border-top-style:dashed;border-bottom-color:blue;border-bottom-style:dashed;border-bottom-width:thin;border-right-color:blue;border-right-style:dashed;border-right-width:thin;border-left-color:blue;border-left-width:thin;border-left-style:dashed;border-top-width:thin}
use pt for print css, otherwise use relative units (% em)
do not use named color values, use hex or RGB
border-width thin is not the same in different browsers, use absolute units (px)

a:link{font-size:25pt;font-color:blue}
see above

a:visited{font-size:25pt;font-color:blue}
see above

.title{}
empty, not valid

. text{position:absolute;top:200;left:180;width:400}
no space in selector (.text)
unit values greater than zero must have units: (top:200px; )

.banner{position:absolute;top:1;left:170}
see above

.links{position:absolute;top:110;left:180}
see above

<!-- m --><a class="postlink" href="http://www.w3schools.com/css/default.asp">http://www.w3schools.com/css/default.asp</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.w3.org/Style/CSS/">http://www.w3.org/Style/CSS/</a><!-- m -->
<!-- m --><a class="postlink" href="http://jigsaw.w3.org/css-validator/ya">http://jigsaw.w3.org/css-validator/ya</a><!-- m --> i'm new to css so thnx for helping a noob. much appreciated
 
Back
Top