Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How Do I Change The Width Of My Web Site


clayg

Recommended Posts

how do I change the width of my web site

 

you can do that by wrapping up the entire body contents by a div layer.

 

<body>

<div style="width:1000px;">

.

.

.

</div>

</body>

 

or you can set an id for the div and define width at the css file. <-- which is better.

 

<body>

<div id="wrap">

.

.

.

.

</div>

</body>

 

and at stylesheet.css

 

#wrap {

wdith: 1000px;

}

 

one thing you should be aware is that your contents inside the div layer should not be wider than 1000px.

Otherwise, it might show things outta place. Watch out for the width of so many tables being used.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...