Skip to content Skip to sidebar Skip to footer

Getting Error In Website Width In Fixed Layout Website

I am getting a problem in fixed layout website. I have coded it manually and do not know how to fix it. I am still on learning stage. Can you tell me what I am doing wrong? Problem

Solution 1:

try to do this

CSS

body {
min-width: 1140px;
}

Solution 2:

I think you have used pixels for body or container division width. Try % for width.

e.g.

body or container (which u have used) {
width:100%;
margin-left:auto; 
margin-right: auto; 
}

Also see for image size width and height. It should be in % instead of pixel as it is single image with fixed size.

Because your sample page is looking OK with 1024 x 768 or more resolution (It is also looking some problem with exact 1024 x 768 resolution...).

EDIT :

updated ur wrapper and container css code

JSFIDDLE

Now u can see difference by changing result section width and height in this jsfiddle

Post a Comment for "Getting Error In Website Width In Fixed Layout Website"