Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

the php

 echo" 
        <div id='backgroundproduct' style='background-image: url($img)'>

    ";

the css

#backgroundproduct{
    position:fixed;
    top:5%;
    left:5%;
    width:90%;
    height:90%;
    z-index:12;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position:top;

}

I'm using a images as a background image, only the lower part of the image is more important than the top.

how can i make the background go up a little ?

share|improve this question
1  
background-position can accept two pixel or percent based numbers. – Mohsen Dec 18 '12 at 0:40
And is there a way to "zoom out" – Ivo Jonkers Dec 18 '12 at 0:43
background-size accept pixel based numbers too – Mohsen Dec 18 '12 at 0:47

2 Answers

up vote 1 down vote accepted

If the bottom is more important: background-position: bottom;

background-position also allows percentage values: 0% 0%; by default.

The first value is the horizontal position and the second value is the vertical. The top left corner is 0% 0%. The right bottom corner is 100% 100%. If you only specify one value, the other value will be 50%.

You should try background-position: 0% -10%;

share|improve this answer
thank you fixed it i was just thinking wrong. And is there a way to "zoom out" so you see more of the picture ? – Ivo Jonkers Dec 18 '12 at 0:45
1  
Yes, you could use background-size with percentages. w3schools.com/cssref/css3_pr_background-size.asp – Stéphane Bruckert Dec 18 '12 at 0:47
thank you some times its just hard to find when you don't know were your looking for – Ivo Jonkers Dec 18 '12 at 0:50

Add background-position: center bottom;

share|improve this answer
oke that's just stupid of my not thinking about this. thanks! – Ivo Jonkers Dec 18 '12 at 0:45
You can use background-size: contain; to fit the background in div. Though, the image may look disproportionate because stretching may occur. This is a CSS3 property though. – vivek Dec 18 '12 at 0:50

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.