Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a background image set to center and needs to be fixed position. However I would like to just nudge it 100px off center, any ideas?

CSS background: url(styles/images/bg.png) no-repeat center 0; background-attachment: fixed;

This is the working sample http://www.warface.co.uk/clients/detail-shoppe/

share|improve this question
2  
Can't just edit the image? :/ – Thomas Clayson Aug 28 '10 at 11:23
I would need to add a massive clear space that's going to increase the file size. It needs to be kept in the position with the content on browser resize – Rob Aug 28 '10 at 11:31

3 Answers

Creating a larger background image that is 300px wider (left or right respectively) will shift the background 150px from center. There is no css style in the background property that will do this. If you don't want to create more div's, this is the only way.

share|improve this answer
This solution is the only valid one, that really answer Rob's problem (I had the same...). Indeed setting a background position to 100px will move the anchor of the image. – clement g Feb 25 at 16:51
You can perform such operation with image magick wery simply : convert image.jpg -gravity East -extend <width+300>x<height> image_extended.jpg by replacing width and height by the original dimensions. – clement g Feb 25 at 16:52

change your css(body) to as follows

background : url("styles/images/bg.png") no-repeat fixed center center transparent;

This should fix your problem xD

Edit :

background : url("styles/images/bg.png") no-repeat fixed 150px 0px transparent

There are various values for background-position, visit the below link for reference http://www.w3schools.com/css/pr_background-position.asp

share|improve this answer
is there no way I can be more specific with placement? At the moment is central but needs to be pushed left by 150px – Rob Aug 29 '10 at 9:33
-150px or +150px from left ? Can u give me a hint – Avinash 웃 Aug 29 '10 at 9:47
Thanks for this, I did try this method but unfortunately the image doesn't move when the browser is resized. I need it to stick to the central content when resized but 150px to the left of center. – Rob Aug 29 '10 at 16:33
@rob seems strange =) – Avinash 웃 Aug 29 '10 at 16:39
@rob this should be working. Have you set the dimensions on div that the background is on? – theorise Aug 31 '10 at 9:02
show 1 more comment

looks like background-position is what you are looking for.

Check out this link for more details

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.