Jump to content

Help needed with CSS - problems resizing browser


wizzofoz

Recommended Posts

I need help with my CSS. The problem: When I resize the browser window in width, at some point the site is not being centered anymore, the lower part is moving to the left side of the browser windowSee attachment [28-6-2012 16-07-54.jpg] I tried several things with Firebug (see attachment [28-6-2012 16-15-23.jpg]) but since my CSS knowledge is so good, I cannot get it to work.From the marked div down to the rest of the page this problem occurs. Site url: www.rumahbapaku.nlCSS also atached

post-97565-0-09794800-1340893257_thumb.jpg

post-97565-0-92154900-1340893264_thumb.jpg

style.css

Edited by wizzofoz
Link to comment
Share on other sites

Wordpress templates are HTML. You can't display a website without HTML. Now, the problem is that the top of the site is 1056px wide, while the rest of the elements are 960px. Because of that, when the window is made smaller than 1056 the header can't move anymore while the rest of the page still has space to move. The solution? Don't let the page itself get smaller than 1056px:

body {    min-width: 1056px;}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...