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 ? Quote Link to comment 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> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.