Forum Moderators: not2easy
Thanks.
[edited by: SuzyUK at 9:07 am (utc) on Dec. 20, 2004]
[edit reason] no personal urls per TOS, thanks [/edit]
do you know what HTML the "adbrite" ads script generates (divs, classes?), and is there already any formatting in place for them?
You could try wrapping the ads in a div in their own right and targetting the formatting of the links that way? I've seen something like this elsewhere and have some code, but don't know if it will work here..
HTML:
<div class="adbrite">
.... javascript code here....
</div>CSS:
.adbrite {font: 12px arial, verdana, sans-serif;}
.adbrite a {text-decoration: none; color: #000;}
.adbrite a:hover {text-decoration: underline; color: #f00;}
.adbrite .adHeadline {text-decoration: underline; font-weight: bold; color: blue;}
...based on this example of the generated code I saw:
<A onmouseout="window.status=' '; return true;" onmouseover="window.status='example.html'; return true;" href="targetpage.html" target="_blank"><B><SPAN class="adHeadline">Advertiser</SPAN></B><BR/><SPAN class="adText">Advert Text blah blah</SPAN></A>
<BR/><BR/> Suzy