

snike said:Thanks! I'll try it out soon and I'll let u know/
This did not work the way i wanted it to. The text shouldn't start where the background starts but at the top where there is no background and continue downward.
Sorry. Is this possible?
#text {
background-image: url(bg.jpg); //Picture we will use.
background-repeat: repeat-y; //States to repeat on the y axis (vertically.)
background-position: 110px 100px;
// Background Position moves the background 110px right and 100px down within its current element. It will not move the background itself, but within the container...
height: 300px; //Sets the height of the div.
}
<=== or ===>
#text {
background: url(bg.jpg) repeat-y 110px 100px; //Condensed.
height: 300px;
}
<div id="text">Your text here.</div>



