After uploading mrandmrsmagic .com website, a few issues were noticed. The site appears fine when maximized, but only half is shown when minimized. The absence of a scroll bar could be causing this display problem. Five different background images were used by slicing them in Photoshop for the site. However, since it has been a while since building a site from scratch, the coding might be messy. Presented below is the CSS code for the five body divs.
#body {
width: 1024px;
height: 583px;
marin: 0;
padding: 0;
position: relative;
left: 448px;
top: -128px;
background: url(../images/body_02.jpg) no-repeat left top;
}
#body2 {
width: 1024px;
height: 583px;
position: relative;
left: 448px;
top: -128px;
background: url(../images/body2_02.jpg) no-repeat left top;
}
#body3 {
width: 1024px;
height: 583px;
position: relative;
left: 448px;
top: -128px;
background: url(../images/body3_02.jpg) no-repeat left top;
}
#body4 {
width: 1024px;
height: 583px;
position: relative;
left: 448px;
top: -128px;
background: url(../images/body4_02.jpg) no-repeat left top;
}
#body5 {
width: 1024px;
height: 583px;
position: relative;
left: 448px;
top: -128px;
background: url(../images/body5_02.jpg) no-repeat left top;
}
#body6 {
width: 1024px;
height: 583px;
position: relative;
left: 448px;
top: -128px;
background: url(../images/body6_02.jpg)
}
An attempt to fix the issue was made by removing the height and setting the width at 100%, which did not solve the problem. In fact, it may have worsened it. Is there a way to rearrange the CSS to address this issue while still keeping the five divs? Possibly creating one initial div tag and then defining five class tags for the bodies could be a solution. Any suggestions or assistance are welcome. Thank you.