clayg Posted June 15, 2007 Share Posted June 15, 2007 how do I change the width of my web site Link to comment Share on other sites More sharing options...
aznkpride0922 Posted June 15, 2007 Share Posted June 15, 2007 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 More sharing options...
Nullachtfuffzehn Posted June 15, 2007 Share Posted June 15, 2007 stylesheet.css body{width:XXXXpx.... ??? Link to comment Share on other sites More sharing options...
clayg Posted June 15, 2007 Author Share Posted June 15, 2007 stylesheet.css body{width:XXXXpx.... ??? it doesnt work ???? Link to comment Share on other sites More sharing options...
usernamenone Posted June 15, 2007 Share Posted June 15, 2007 http://www.oscommerce.com/community/contri...y/search,111561 Link to comment Share on other sites More sharing options...
clayg Posted June 15, 2007 Author Share Posted June 15, 2007 http://www.oscommerce.com/community/contri...y/search,111561 got it great thanks Link to comment Share on other sites More sharing options...
usernamenone Posted June 16, 2007 Share Posted June 16, 2007 :thumbsup: got it great thanks Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.