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

First I have my container.

 .container {
    width: 780px;
    background: #FFF;
    margin: 0 auto;
}

Then I add this with the goal of having the image display across the container and spanning the 780px. The image will fade to pure black at the bottom and it will then mix with the background color.

.container {
        width: 780px;
        background: #FFF url(picture.png) no-repeat center top;
        margin: 0 auto;
}

Nothing happens when I do this, it does work when I do something similar to my site background through "body".

Thanks for the help.

Edit: The more I think about it, do I have to do this through HTML, is there a way to make an image inserted in the html fall behind everything else and not be able to be interacted with?

Edit 2: With the help from the first 2 answer I am at this:

.container {
    width: 780px;
    background: url(Portfolio Assets/PortfolioUnderNavbg.png) no-repeat center top #000;
    margin: 0 auto;
    height: 100%; 
}

But it still won't work, I forgot to mention that the page does have a header, so I think I have to somehow make the background image move down to be under the header but still in the container. I read that background only accepts percentage adjustments in height but that was older documentation. Is there a way to make it start at say, 100px down from the top of the container?

share|improve this question
1  
jsfildde it to make it easier to see what you are talking about. – D3mon-1stVFW May 18 '12 at 16:39
Is the missing closing curly brace a typo, or the reason you're having trouble? You can do this with CSS, that's what background is for. – Surreal Dreams May 18 '12 at 16:39
Sorry, I just didn't copy it. I will fix it right now. – user1041950 May 18 '12 at 16:41

3 Answers

Change to background:url('your-image.png') no-repeat center top #FFF

What's happening is the #FFF color code is overriding the image url.

Some docs.

share|improve this answer
I changed it to this and it still wont show the image, which is so weird because literally 20 lines up I have the exact same thing for the background of the entire page and it works perfect. – user1041950 May 18 '12 at 16:49
I think something is messed up somewhere else. As another commenter mentioned, a jsFiddle would be helpful. Also, try adding display:block; to the .container – CamelBlues May 18 '12 at 18:28
   .container 
    {
        width: 780px;
        background: #FFF url(picture.jpg) no-repeat center top;
        margin: 0 auto;
        height:100%;
   }

i think .... u give height:100%; like above code

share|improve this answer

.container { width: 780px; background: #FFF url('picture.jpg') no-repeat center top; margin: 0 auto; height:'your-img-size'; }

i guess it's working...

share|improve this answer
I'm sorry, I don't understand what you mean. This is what I had the first time and didn't work. – user1041950 May 18 '12 at 17:11
pay attention... you need to set the "height" of your container class. if this fails, try to change the background: #FFF, cause sometime the color may "erase" the img; – Pedro Henrique Moraes May 18 '12 at 17:24
I have Height: 100% because the container should scale with the length of the content. I will try a few different color codes and see what happens. – user1041950 May 18 '12 at 17:28

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.