zoogs
New member
I noticed the advertisement just got added in and it was stretching the page horizontally in a weird way.
Here's a quick code fix:
Original:
Modified:
For some reason, the <table> stretched things out and took up more space than it was supposed to, even though the <div> that contained it didn't occupy that space. Not really sure why <table> works this way but that was what I saw from using Firebug in Firefox (hecka useful debugging tool for these things)
Here's a quick code fix:
Original:
Code:
<table width="525" cellspacing="0" cellpadding="0" border="0">
<tbody><tr><td>
<a target="_blank" href="http://www.huskernation.com">
<img height="80" width="600" src="img/hnbanner.gif" alt="Click to shop at HuskerNation.com"/></a>
</td>
</tr></tbody></table>
Code:
<a href="http://www.huskernation.com" target="_blank">
<img height="80" width="600" alt="Click to shop at HuskerNation.com" src="img/hnbanner.gif"/></a>
Last edited by a moderator: