• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

I Am So Damn Frustrated... Someone Please Fix...

Mekhu

New Member
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="images/bg.jpg">&nbsp;</td>
<td width="776" align="center" valign="middle" bgcolor="#7F7F7F">
<table width="774" height="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#FFFFFF">
<table width="774" height="551" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="center" valign="middle" bgcolor="#7F7F7F">
<TABLE WIDTH=774 BORDER=0 CELLPADDING=0 CELLSPACING=0>

That god damn above code is making my page have a horizontal scrollbar on 800 x 600 mode...

I'd up the page, but ftp program won't seem to work...

Does anyone see ANYTHING wrong with that?

Basically the page is 3 coloums... left and right are whatever width browser determines (keeps them equal) and middle is 776.
 
It's because 776 is too much to begin with, even without the two other columns. So I would make it smaller. And, instead of all of those tables and stuff, just do this, altering table attributes (I made border=1 so when you preview it you can see where the columns are etc)
Code:
<table width="100%" border="1">
<tr>
  <td>1st Column</td>
  
  <td><table width="776">
  <tr>
    <td>Middle</td>
  </tr>
  </table></td>
  
  <td>2nd Column</td>
</tr>
</table>
 
Back
Top