I have just upgraded to Dreamweaver CS3 and I have a problem creating new
pages from Templates I have created because of the way I put my stylesheets
in my templates.

On my Template, the code is:
<style type="text/css" media="screen">
<!--
@import url(../stylesheet.css);
-->
</style>
<style type="text/css" media="print">
<!--
@import url(../printstylesheet.css);
-->
</style>

When I create a new page from a template in Dreamweaver 8, the code ends up
being:
<style type="text/css" media="screen">
<!--
@import url(stylesheet.css);
-->
</style>
<style type="text/css" media="print">
<!--
@import url(printstylesheet.css);
-->
</style>

When I create a new page from a template using Dreamweaver CS3, the code
ends up being:
<style type="text/css" media="screen">
<!--
@import url(file:///W|/gosford hobbies/stylesheet.css);
-->
</style>
<style type="text/css" media="print">
<!--
@import url(file:///W|/gosford hobbies/printstylesheet.css);
-->
</style>
(W is the name of the drive on my server here where the website files live).

Is there a setting I can change in Dreamweaver CS3 or do I have to change
the way I embed the stylesheets because it's not the correct way to do it
anymore?

Joanne


______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to