HTML Help pleaseeeeeeee?

  • Thread starter Thread starter irn3rd0987
  • Start date Start date
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..
 
How do you set the size of a webpage to a specific size, so that all webpages are the same size.

thanks
 
This depends on what method you use for making webpages, seems your asking this question im guessing you use tables, in this case when you create your table just set the width to what you want, the average width is 960 pixels

but if you use the DIV format you will have to change the properties in your CSS style sheet for the DIV that contains all your information,
 
It depends on what you want the page to look like. I used to make pages about the width of a sheet of paper so they printed nice.
If you make a template and use a table set to 600-700 pixels wide.
<TABLE WIDTH="610"> then create everything inside that table it should all be the same.
 
Back
Top