PDA

View Full Version : Footer Links


Maxman1544
08-08-2008, 05:07 PM
On the very bottom of the site, we have ads that have the color of the ".smallfont class". I want to make the color white for those ads.

When I make the color white, it changes all the .smallfont text.

How can I code this to make my own class for this?

Thanks!

Attitude5ire
08-08-2008, 06:46 PM
Alright.. so lets say u used a div for footer links..
put a class to it..
so wud be like this <div class="footerads">

then in main css.. advanced css add this..
.footerads a{
color:white;
}

you can declare within too but uses classes they come handy. incase you wana add same color scheme somewhere else.

Maxman1544
08-08-2008, 08:25 PM
Thank You!

Maxman1544
08-12-2008, 03:23 AM
That worked, thanks again for the help!