
March 15th, 2011, 05:01 PM
|
|
Contributing User
|
|
Join Date: Jan 2011
Posts: 51
Time spent in forums: 14 h 54 m 56 sec
Reputation Power: 3
|
|
|
Dreamweaver doesn't find CSS
Hey,
I use dreamweaver. When I want to link my CSS I use this sort of line:
Code:
<link href="/my_map/stylesheet.css" rel="stylesheet" type="text/css">
Unfortunately, Dreamweaver doesn't seem to recognise this sort of href and I have to write code with no visual reference (while this works flawless when I test it)
Dreamweaver suggests to me I should use this instead: (which does work in Dreamweaver)
Code:
<link href="../my_map/stylesheet.css" rel="stylesheet" type="text/css">
But I find that this line doesn't always work (I'm currently testing in XAMPP) and I'm stuck with some white pages with no style at all...
The pages are .php files
|