I don't know what happened to the tech-ish forum, so I guess I'll post this here...? I'm working on a website for a Model United Nations conference co-hosted by Boston University and MIT. The code from last year (I blame the MIT guy who, while brilliant in many other respects, wrote shamefully shoddy code) needed a major overhaul. We want to keep the site design & color scheme generally the same to retain brand recognition; however, I decided to work towards making the site standards-compliant and achieving the same effects we'd "accomplished" last year through tables and, to use a Massassi-ism, "hammer and nail computing" instead through CSS.
Everything's going quickly and well so far... with a few minor exceptions. What's bothering me currently is that there's this phantom white space between the legal stuff at the bottom of the page and the end of the content <DIV>. Also, the "Top of Page" link won't center, even though this is how the W3C says I should center things. Any help would be appreciated.
http://bosmun.org/new/stylemun.php
(Alternatively, you could make fun of me for "leaving the community" and poking my head back in once in a while. at Brian for still having my soul.)
Everything's going quickly and well so far... with a few minor exceptions. What's bothering me currently is that there's this phantom white space between the legal stuff at the bottom of the page and the end of the content <DIV>. Also, the "Top of Page" link won't center, even though this is how the W3C says I should center things. Any help would be appreciated.
http://bosmun.org/new/stylemun.php
Code:
<div id="contentColumn"> ... <span style="text-align: center;"><a href="#">Top of Page</a></span> </div> <!--end of the div that contains the welcome letter, will add top padding soon--> <div id="legal"> <p> Boston Model United Nations Conference<br> A <a href="http://www.bu.edu">Boston University</a> and <a href="http://www.mit.edu">Massachusetts Institute of Technology</a> Collaborative Event<br> <strong>Copyright © 2007 BosMUN</strong> </p> </div> </div>
(Alternatively, you could make fun of me for "leaving the community" and poking my head back in once in a while. at Brian for still having my soul.)