I don't know where you put your styles but I always use an external css and then link to that.
So, in your html header you need a link to the external css file (see code window):
Then in your css file which I always put in a directory called css create a file called design.css. You can call it anything you like as long as you change the link to it.
In that file put all your css (see code window)
This keeps the styling out of your html file and makes everything easier to work on.
Main Topics
Browse All Topics





by: Mr-MadcowzPosted on 2009-07-07 at 04:57:11ID: 24793357
You first need to create the div class or ID's then DW will show them you right hand click on the div.
So, create a new div ID (if it is only used once on that page) or a class (if it is used more than once per page)
#header {
declare the Id styles here
}
or
.content {
declare the class styles here
}
and then DW should then pick them up for you.