Log in

View Full Version : image position



runnerjp
02-22-2007, 11:20 AM
}
#background {
width: 100%;
height: 100%;
background:url(http://www.runnerselite.com/images/linedown.jpg);
background-repeat: repeat-y;
background-position:fixed;
left: 25%;
top: 30%;
}
ok my image is repeating but i cant seem to position it on the page how comes??

Blake
02-23-2007, 05:21 PM
}
#background {
width: 100%;
height: 100%;
background:url(http://www.runnerselite.com/images/linedown.jpg);
background-repeat: repeat-y;
background-position:fixed;
left: 25%;
top: 30%;
}
ok my image is repeating but i cant seem to position it on the page how comes??

top and left only work for positioning objects with position: absolute or position: relative. What you want is:


background-position: 25% 30%;


and (assuming you don't want the background to scroll)



background-attachment: fixed;


instead of



background-position: fixed;