Are there any bugs involving CSS or HTML tables on greghard.com?
With the changes made in IE7, the rendering of that page expands farther than it did previously. Any ideas on a fix?
Public Comments
- You aren't using tables. At least not in the html that's viewable by the browser. Everything is done with a class (<div class="side">) This style might have something to do with it - but I doubt it. Try putting the code in the div blocks into a talbe and set the percentage. ie... <div class="side"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <ul> <li><b>Email</b>: GregHard@bu.edu</li> <li><b>Phone (Office)</b>: 888-222-5970 x.707</b></li> <li><b>My Resume</b>: <a href="/portfolio/cv.pdf">Current CV</a> (PDF)</li> <li><b>About Me</b>: <a href="bio.html">Biography Page</a></li> </ul> </table> </div> without access to your actual class="side" I don't know if my suggestion will work. I know you can only control the expansion you see with the proper use of a table though. Perhaps the table will have to go around the div like this: <table border="0" cellpadding="0" cellspacing="0" width="100%"> <div class="side"> <ul> <li><b>Email</b>: GregHard@bu.edu</li> <li><b>Phone (Office)</b>: 888-222-5970 x.707</b></li> <li><b>My Resume</b>: <a href="/portfolio/cv.pdf">Current CV</a> (PDF)</li> <li><b>About Me</b>: <a href="bio.html">Biography Page</a></li> </ul> </div> </table>
Powered by Yahoo! Answers