manix Posted July 15, 2011 Share Posted July 15, 2011 I'm guessing this is a CSS related problem.. I have a 22" monitor and I'm using 1680x1050 resolution and I can see how all websites have the same width which is around 1024 and everything the site holds is within this width, I wanna ask how do I achieve it ? Link to comment https://forums.phpfreaks.com/topic/242096-site-width/ Share on other sites More sharing options...
cssfreakie Posted July 16, 2011 Share Posted July 16, 2011 you need to set a fixed width to the container holding the elements which are part of the website. for instance. css: #wrapper{width:1024px;margin:0 auto; overflow:hidden;} html: <div id="wrapper"> website content inside here </div> Link to comment https://forums.phpfreaks.com/topic/242096-site-width/#findComment-1243314 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.