I already tried wrapping the ads network thru css and I've also added the color on the div tag but still no luck.
I tried this code and define the class on the css file but still no luck am I missing something else? <div class="coop" style="color: 669900"> ad network code </div> Code (markup):
Create a class inside of your pages CSS: .footertext { padding: 0px; font-family: Verdana, Tahoma, Arial, Trebuchet MS, Sans-Serif, Georgia, Courier, Times New Roman, Serif; line-height: 120%; font-size: 10px; vertical-align: middle; font-weight: normal; [B]color: #COLOR HERE;[/B] text-align: left; text-decoration: none; } Code (markup): The class above will set the font, color, alignment, etc of plain text (not links) if "footertext" is used as a class in a div tag that the object is wrapped inside of. If there are links inside of this div they will pickup the native CSS as there is no code there for links. .footertext a:link, .footertext a:visited { padding: 0px; font-family: Verdana, Tahoma, Arial, Trebuchet MS, Sans-Serif, Georgia, Courier, Times New Roman, Serif; line-height: 120%; font-size: 10px; vertical-align: middle; font-weight: normal; color: #COLOR HERE; text-align: right; text-decoration: none; } Code (markup): The class above will set the font, color, alignment, etc of the link and visited link if "footertext" is used as a class in a div tag that the object is wrapped inside of. You could also add another extention of "footertext" to support a change in style for hover. The actual class "footertext" could be called anything but the class must be called in the div that the code you wish to style is wrapped inside of. IE: <div class="footertext"> ADNETWORK </div> Code (markup):