View Full Version : Dreamweaver/CSS stylesheet Issues, help please?
PMS Fedaykin
01-17-2008, 03:48 PM
i'm seriously about to go crazy, i can't get my external stylesheet to attach, and i can't figure out why! help?
H2O Snake
01-17-2008, 04:20 PM
This is the code you need to load an external stylesheet. Is that what you needed?
<STYLE TYPE="text/css">
@import url(http://www.yoursite.com/yourstylesheet.css);
</STYLE>
ElFi PMS
01-17-2008, 05:34 PM
If the above doesn't help...why don't you just post the code you are working with and we can take a looksy?
H2O TankBusta
01-17-2008, 06:37 PM
:O Snake! XHTML Standards! No caps :)
The way snake showed works or you can put this in the header tag. (IMHO This header tag is better)
In <head>...</head> put
<link rel="stylesheet" type="text/css" href="link goes here" media="screen" />
PMS Fedaykin
01-17-2008, 06:38 PM
okies i got it figured out, just a little bug in my code. wewt!
H2O Snake
01-18-2008, 12:24 AM
I like my way better cause you can override the style sheet as needed.