I
irn3rd0987
Guest
My first answer is do not! use tables for web deisgn at all, big no no, no control at all.
if you want to make a site a fixed width then here are some soloutions
full width page = this code
HTML code
<div id="wrapper">
Rest of code here
</div>
CSS code
#wrapper{
width:100%;
}
if you want a centred site then go for this code
HTML
<div id="wrapper>
Rest of code here
</div>
CSS
#wrapper {
width:800px; OR width:1024px;
}
Message me if you would like more help..
if you want to make a site a fixed width then here are some soloutions
full width page = this code
HTML code
<div id="wrapper">
Rest of code here
</div>
CSS code
#wrapper{
width:100%;
}
if you want a centred site then go for this code
HTML
<div id="wrapper>
Rest of code here
</div>
CSS
#wrapper {
width:800px; OR width:1024px;
}
Message me if you would like more help..