You could remove the span and class and give the DIV an ID instead. Just select code/design in the view menu in Dreamweaver so you can change the code manually.
So for example:
<div id="footer"></div>
and then in the CSS you go:
#footer a {color:whatever}
#footer a:hover {color:whatever}
You could also just set all the different font styles using P with different classes. For example:
In the html
<p class="footer">text</p>
In the CSS
.footer a {color: whatever}
.footer a:hover {color: whatever}
Hope that helps.
Last edited by Aarlev : 01-10-2008 at 04:56 AM.
|