Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Centre


Guest

Recommended Posts

Hi

 

Im customizing Os Commerce 2.2, i am trying to make the entire site 95% of the window and centred not 100%. I changed the main table in index.php to align="center" and width="95%" but it either does not change the whole site width, or it wont centre it

Link to comment
Share on other sites

Add this new class to your stylesheet

 

#wrapper {
 width: 95%;
 margin: 0 auto;
}

 

and alter the BODY class to this

 

BODY {
 background: #ffffff;
 color: #000000;
 margin: 0px;
 text-align: center;
}

 

Then in includes/header.php, add this before the first <table>

 

<div id="wrapper">

 

and in includes/footer.php, add this after the last </table> close tag.

 

</div>

 

That should do it for you.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...