I think this is right place to post... I have pages that look just fine when viewed via IE6 running on Windows. But they look crazy at the bottom of page when viewed on Firefox or the Mac or something... Here's a page that looks good (or good enough) at the bottom: http://www.scorporationsexplained.com/doityourself_FloridaSCorp.htm Here's a page that looks bad at bottom: http://www.fasteasyincorporationkits.com/FloridaCorporationKit.htm First person to post a fix that works (please include enough detail so that person who created this mess--ME--can fix), I'll paypal $50 to... BTW, I'm out of office this afternoon, but I'll check and see if any HTML angels took pity on me and provided a solution...
in style.css on the page thats broken, change this: .content { background: #FFFFFF url(images/shadowbg.gif) repeat-y; text-align: left; padding-left: 20px; padding-right: 15px; padding-top: 5px; height: 741px; } Code (markup): to .content { background: #FFFFFF url(images/shadowbg.gif) repeat-y; text-align: left; padding-left: 20px; padding-right: 15px; padding-top: 5px; } Code (markup): seems to work fine on FF here.
after done as pixelcoder said, in your html page, add </div> into this code : <div id="secondarynav"> <a href="http://www.fasteasyincorporationkits.com/index.htm"> Incorporation Home</a> | <a href="http://www.fasteasyincorporationkits.com/taxationofcorporations.htm"> Taxation of Corporations</a> | <a href="http://www.fasteasyincorporationkits.com/accountingforcorporations.htm"> Accounting for Corporations</a> | <a href="http://www.fasteasyincorporationkits.com/ccorporationversusscorporation.htm"> C Corporation Versus S Corporation</a> | <a href="http://www.fasteasyincorporationkits.com/incorporationfaq.htm"> Incorporation FAQ</a><br><a Code (markup): to <div id="secondarynav"> <a href="http://www.fasteasyincorporationkits.com/index.htm"> Incorporation Home</a> | <a href="http://www.fasteasyincorporationkits.com/taxationofcorporations.htm"> Taxation of Corporations</a> | <a href="http://www.fasteasyincorporationkits.com/accountingforcorporations.htm"> Accounting for Corporations</a> | <a href="http://www.fasteasyincorporationkits.com/ccorporationversusscorporation.htm"> C Corporation Versus S Corporation</a> | <a href="http://www.fasteasyincorporationkits.com/incorporationfaq.htm"> Incorporation FAQ</a></div><br><a Code (markup): and remove "height: 20px;" from your style.css : #secondarynav { background: #cc6600; font-family: Verdana,Arial; color: #FFFFFF; font-size: 11px; vertical-align: middle; height: 20px; padding: 2px; } Code (markup): to #secondarynav { background: #cc6600; font-family: Verdana,Arial; color: #FFFFFF; font-size: 11px; vertical-align: middle; padding: 2px; } Code (markup): thanks!