IE messes up once again, width problem

Discussion in 'CSS' started by eiso, Aug 12, 2005.

  1. #1
    I have a problem with the width of the menu.

    url: http://web9.000025.net/~eiso/

    In FF the menu is the exact size I want it to be, but when I look at the layout in IE the menu is much wider then in FF what can I do to make the menu in IE the same width as the one in FF??

    Best regards,

    Eiso
     
    eiso, Aug 12, 2005 IP
  2. vectorgraphx

    vectorgraphx Guest

    Messages:
    545
    Likes Received:
    16
    Best Answers:
    0
    Trophy Points:
    0
    #2
    just a guess, but try changing the line that reads

    
    <td width="654" rowspan="2" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
    
    Code (markup):
    to

    <td width="100%" rowspan="2" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
    
    Code (markup):
    you've already got your main table width defined, this might push the width of the main body cell over. table cells are a pain.

    VG
     
    vectorgraphx, Aug 12, 2005 IP
  3. NetMidWest

    NetMidWest Peon

    Messages:
    1,677
    Likes Received:
    151
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I think you need to add a width to <div id="button">, if I am correct in what you are trying to do.
     
    NetMidWest, Aug 12, 2005 IP
  4. eiso

    eiso Peon

    Messages:
    583
    Likes Received:
    19
    Best Answers:
    0
    Trophy Points:
    0
    #4
    This is the code where the menu is situated:

    <td height="179" valign="top">
    <div id="button">
    <ul>
    <li><a href="#">Home</a></li>
    <li><a href="#">World</a></li>
    <li><a href="#">Business</a></li>
    <li><a href="#">Politics</a></li>
    <li><a href="#">Sport</a></li>
    <li><a href="#">Entertainment</a></li>
    <li><a href="#">Technology</a></li>
    <li><a href="#">Contact Us</a></li>
    </ul>
    </div></td>
     
    eiso, Aug 12, 2005 IP