View Single Post
Old 01-09-2008, 02:41 PM   #3
Aarlev
Web Designer
 
Aarlev's Avatar
 
Join Date: Jan 2008
Location: London
Posts: 311
Default

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.
Aarlev is offline   Reply With Quote