Hi, I'm trying to correct a CSS issue on a User Profile. If you view this one for example, http://www.musculartrainingdevelopment.com/13204-yukoshimizu/ You'll notice on Firefox, the "tcat" and Content spills over the body table. How do I prevent this and make everything stay within the main body table? Here's part of code: <table align="center" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" width="100%"> <tr> <td class="tcat" colspan="$columns">$userinfo[username]'s Latest Gallery Submissions</td></tr> <tr>$variable</tr> </table>
The 'real' minimum widths of the left column and right column are bigger than the container. Text can flow to fit a container, images can't, they'll just force the container to be bigger. Only thing i can see in left column which may be making it bigger than should be is the google ad. Get rid of that and your getting a lot closer to what it should be like (should only be around 10-20px out then). Bit of messing with padding/margins to reduce width of right column and it should fit fine.