How can I keep the css for going on the adbrite ads? Nothing seems to stop it from getting on the adbrite ads. here is a link to the css. http://www.plentyoftorrents.com/table.css and the page. http://www.plentyoftorrents.com/general.htm#dir Thanks for any help. :
I'm not sure i understand what your talking about. The ads under the torrent list are blue, you want them normal? im not sure what your saying.
If you're trying to control the font style of the adbrite ad with css on the same page, you can't. The Adbrite Ad writes an iframe and you can't control the style of an iframe from outside it in that manner.
Im trying to remove the style that my css adds to it. As you can see it looks just like my table now. the bottom block of ads.
Have I closed all my tags properly? Heres my css. http://www.plentyoftorrents.com/table.css http://www.plentyoftorrents.com/general.htm
You have specified inside your document before the Adbrite: <div id"longad"> This should be: <div id="longad">
try adding a class to your adbrite table. instead of having table{border-collapse:collapse} td,th{border:1px solid #C8C8C8 ;padding:5px} table tr:hover td{ Code (markup): make it table.[b]torrents[/b]{border-collapse:collapse} td,th{border:1px solid #C8C8C8 ;padding:5px} table.[b]torrents[/b] tr:hover td{ Code (markup): replace torrents with any class name you would like, if you don't like "torrents". then in your html, replace this <table width="470" cellspacing="1" cellpadding="2" id="myTable" class=""> Code (markup): with this <table width="470" cellspacing="1" cellpadding="2" id="myTable" class="[b]torrents[/b]"> Code (markup): use the same class name as in the css, this should not style the adbrite table.