Tables resizing

Discussion in 'Templates, HTML, CSS, and Design Help' started by calaf6, Mar 29, 2006.

  1. calaf6 Customer

    When I go to my site on IE (not tried other browsers yet) the left and right tables appear on the screen as large, and then reduce to the correct size.

    Any (simple) ideas as to how I can get them to come up at the correct size immediately please.
  2. Eric Barnes Guest

    I am not sure if this is the answer but can you try to open your style sheet and change the #wrapper from width: 90% to width:700px;
  3. John Snyder Staff

    I think I see what you are talking about. This is because you have those table widths set to 100%, it might help if you set these to px.

    as is now:
    HTML:
    <!-- // right featured // -->
    <td width="175" style="padding:0px;" valign="top">
    	<table with="100%" class="tableborder">
    make it:
    HTML:
    <!-- // right featured // -->
    <td width="175" style="padding:0px;" valign="top">
    	<table with="175" class="tableborder">
    This is not happening in firefox - and the pages load so fast its hard for me to see. Let me know if this solves the problem.
  4. calaf6 Customer

    Thanks,
    looks as if thats fixed, will check it at work tomorrow, computers there are slower so it will show up more if it still does it.

Share This Page