I am making a forum for someone, they want an ad in the header... I put it there but it doesn't work in IE... This is my CSS for it: div.bannerpadding { border: 0px solid; padding-top: 0px; padding-bottom: 0px; padding-left: 0em; padding-right: 1em; } Code (markup): This is the PHP: <div class="bannerpadding"><a href="/viewforum.php?f=5/"<img src="templates/Jet/images/logo_right.gif" width="468" height="60" alt="" /></a></div></td> Code (markup): Can anyone tell me how to get it compatible with all browsers? Thanks.
Sorry, I wasn't sure, because it involves CSS and PHP I couldn't choose witch section to choose... The URL is: www.swap2shop.exofire.net
This should work: <div class="bannerpadding"><a href="/viewforum.php?f=5"><img src="templates/Jet/images/logo_right.gif" width="468" height="60" alt="" /></a></div> Code (markup):
Have you tried it yet? This is the code I see on your site: <div class="bannerpadding">[B][COLOR="Red"]<a href="/viewforum.php?f=5/"[/COLOR][/B]<img src="templates/Jet/images/logo_right.gif" width="468" height="60" alt="" /></a></div> Code (markup): Incorrect html syntax. The code I gave you is this: <div class="bannerpadding">[COLOR="Red"][B]<a href="/viewforum.php?f=5">[/B][/COLOR]<img src="templates/Jet/images/logo_right.gif" width="468" height="60" alt="" /></a></div> Code (markup): and it should work.