Guest Posted May 14, 2007 Share Posted May 14, 2007 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 More sharing options...
spax Posted May 14, 2007 Share Posted May 14, 2007 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.