External CSS not loading
Posted: 06 February 2009 08:43 PM   [ Ignore ]
Newbie
Rank
Total Posts:  1
Joined  2009-02-06

Hello, I’m quite new to CSS and I’ve been wanting to create a web page but i have seem to encounter a problem. My external style sheet isnt loading. Code seems to be right; HTML seems to be right. I was curious if i could copy and paste me code here, so that it can be checked. Tell me what code you want to look at first. Thanks in advance.

Profile
 
 
Posted: 17 February 2009 04:40 PM   [ Ignore ]   [ # 1 ]
Member
Avatar
RankRankRank
Total Posts:  52
Joined  2007-11-08

Check the link from your html to your stylesheet.

Profile
 
 
Posted: 07 March 2009 07:57 AM   [ Ignore ]   [ # 2 ]
Newbie
Rank
Total Posts:  6
Joined  2009-03-07

The easiest way would be to post a link to the site you’re working on. Otherwise post the HTML.

Profile
 
 
Posted: 11 March 2009 08:05 AM   [ Ignore ]   [ # 3 ]
Newbie
Rank
Total Posts:  17
Joined  2009-03-09

What you need is to write a proper path to your css file.


<link rel=“stylesheet” type=“text/css” href=“mystyle.css” />  ( href must lead to your css file. In this example css file is in the same root with page that calls it. )

Profile