Lose the fixed value on the background image and set a min-width for html,body.
e.g.
Code:
body {
background-color: ;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size:11px;
color: #000;
background:#c02327 url('http://www.rnlservicesllc.com/images/rnl_services_home.jpg') no-repeat 50% 0;
}
html,body{min-width:1000px}
It has nothing to do with the above problem but as Ryan said also remove #wrapper from the height:100% routine as that won't do what you expect.
Use a min-height if needed instead.
Code:
html, body {
height:100%;
margin: 0;
padding: 0;
border: none;
text-align: center;
}
#wrapper {
margin: 0 auto;
text-align: left;
width: 400px;
min-height:100%;
}
* html #wrapper{height:100%}/* IE6 min-height*/
Although you don't seem to be doinh anything that needs the 100% effect.
Bookmarks