CSS Help! Any Experts on this would know?

Discussion in 'CSS' started by foulplay, May 13, 2007.

  1. #1
    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>
     
    foulplay, May 13, 2007 IP
  2. webdesigner

    webdesigner Well-Known Member

    Messages:
    489
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    110
    #2
    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.
     
    webdesigner, May 14, 2007 IP
    foulplay likes this.