external css stylesheet doesnt work

A

Anonymous

Guest
The stylesheet shouldn't have anything to do with your php.ini file, but to test that, create a plain html file and try to use the external stylesheet. If it doesn't work, I'm guessing it's most likely a setting either in your browser or in IIS.
 
Doesn't this (between head tags) work?

Code:
<link rel="stylesheet" type="text/css" href="link" />

Replace 'link' with the external sheet link.
 
Hi,

Try like this:
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
 
Back
Top