Page 2 of 2

Posted: Fri Mar 24, 2006 12:00 pm
by xEzMikex
thanks :) worked. Ok when im using float and static is there away to make the the image 10px off the left side?

Posted: Fri Mar 24, 2006 1:31 pm
by matthijs
You mean one of the background images? Some examples

Code: Select all

#somediv {
background-position: 20px 10px;
}
#someelement {
background: url(images/coolbackground.jpg) no-repeat left center;
}
#other {
background: #ddd url(images/background.gif) no-repeat 10px 0;
}