Hey guys, volunteered to design a website for a friend who's producing a movie. However, I'm having a few problems with the background.
I can't get the background to stretch with the rest of the page when it resizes. . .if the page is made smaller, and then scrolled over (like users with smaller resolutions might do) the background and top header disappear, and nothing is readable. What am I doing wrong here? Please let me know. The web address is
http://www.radiointifadathemovie.com
I'm about to scrap this layout because of this. . .maybe you all may know what I'm doing wrong here.
and here's the css. ..
//
html, body {
margin: 0;
padding: 0;
}
body {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
color: #000000;
}
a:link {
color:#FFCC00;
font-weight: bold;
text-decoration: none;
}
a:active {
color: #FFCC00;
font-weight: bold;
text-decoration: none;
}
a:visited {
color: #FFCC00;
font-weight: bold;
text-decoration: none;
}
a:hover {
color: #FFCC00;
font-weight: bold;
text-decoration: underline;
}
h1 {
margin: 0px;
padding: 0px;
}
#contentleft .p {
text-indent: 20px;
}
img.priceposition {
position:relative;
left: 20px;
}
#page-container {
width: auto;
margin: auto;
}
#header {
width: 100%;
height: 100px;
background-color:#000000;
}
#contentmidcontainer {
width: 100%;
height: 500px;
margin: auto;
background-image:url(../images/centerbg.jpg);
background-repeat:no-repeat;
}
#contentmiddle {
width: 941px;
height: 500px;
margin: auto;
}
#donatediv {
width: 220px;
margin-left:0;
margin-bottom:10px;
margin-top:20px;
margin-right:20px;
float:right;
}
#leftcontainer {
width: 500px;
height: 300px;
margin-left:auto;
margin-right:20px;
margin-bottom:20px;
margin-top:20px;
float:right;
overflow:auto;
}
#rightsidebar{
margin-left:0px;
margin-right:auto;
margin-top:20px;
margin-bottom:20px;
width:180px;
float:right;
}
#footer {
text-align:center;
height: 100px;
width:100%;
clear: both;
padding: 25px;
background-color:#000000;
}//
thanks!