Rachel has attended:
Dreamweaver 8 Introduction course
Style sheets
Can you use two style sheets with one site?
RE: Style sheets
Hi Rachel,
You can use more than one style sheet per site, some people even use more than one style sheet per web page. All you need to do is just change the link to the CSS within you code for the pages where you want to use a different style sheet.
Hope this helps
David
RE: Style sheets
Hi Rachel,
Yes you can.
You can use as many stylesheets as you want throughout your web site, as well as attach as many as you like to a web page.
Have your styles in an external CSS file, then link them at the top of your web document within the HEAD tags, like this:
<link href="/asset/css/styles1.css" rel="stylesheet" type="text/css">
<link href="/asset/css/styles2.css" rel="stylesheet" type="text/css">
Regards, Rich