CSS include issue

tyro89

New Member
Hello all,

I'm trying to include some css on a page using:

<link href="www.some-external-page.com/style.css" type="text/css" rel="stylesheet" media="screen">

Here's my issue, this works fine on one server however on another the css is not displayed at all. Does anyone have any idea why this would happen?

Thanks!
 

craftygeek

New Member
have you tried using a relative link & dropping the domain name in the link eg:
<link href="style.css" type="text/css" rel="stylesheet" media="screen">

I assume that media="screen" is needed?
 
Top