So I'm trying to set up a container with a background image which repeats when other div elements are long enough within the container div. It hopefully won't repeat when the contained divs are short.
However, I cannot get the image to repeat - I think there's something iffy with the way I've coded the #container.
Here's the HTML I have just now...
<body>
<div id=container>
<div id=textblock>
<div id=maintext>
<p>text here</p>
</div>
</div>
</div>
</body>
And here's the CSS...
body {
background-color: #888;
background-position: top;
height:100%;
margin:0;
padding:0;
}
#container {
background-position: relative;
width: 960px;
min-height: 720px;
margin-left: auto;
margin-right: auto;
font-family: Antelope H;
font-size: 1.5em;
color: #c60;
background:url(images/containerback-01.png) repeat-y;
background-color: #fc6;
}
Here's the site as it is just now