Forum Moderators: not2easy
So somehow i missed something somewhere, but i'm stuck. As I have no idea what went wrong.
Any tips would be greatly appreciated!
So I'm guessing that this page is in a directory and the other is not right? like
page-that-works.html
/some-folder/naughty-page.html
Sound about right?
Try using a root relative url like this:
<link rel="stylesheet" type="text/css" href="/path/to/styles.css">
Notice that I've included the type attribute that is required in modern versions of html and that I've used all lower case letters. If you start a url with a '/' it is always relative to the root of you http doc root (usually something like /public_html/useraccountname/).
Try it...
Nick