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.

I have a wrapper div (#main-wrapper), and a div centered horizontally inside (#image). It contains a big image.

I'd like to have a div overlaying #image in the bottom-right corner (#thumbs).

Here's what I have:

<div id="main-wrapper">
    <div id="image">
        <img src="img.jpg" />
    </div>
    <div id="thumbs">
        <a href="#">Link 1</a>
        <a href="#">Link 2</a>
        <a href="#">Link 3</a>
   </div>
</div>

div#main-wrapper
{
    width: 100%;
    background-color: #000000;
    position: relative;
}

div#main-wrapper div#image
{
    margin: 0 auto;
    width: 800px;
    height: 600px;
    background-color: #1D9DDD;
}

div#main-wrapper div#thumbs
{
    position: absolute;
    width: 600px;
    height: 400px;
    background-color: #FF212C;
    bottom: 0;
    right: 0;
}

The problem is that #thumbs goes to the bottom-right of #main-wrapper, and not the center of the centered div.

You can see what I'm doing here: http://jsfiddle.net/22NnS/1/

share|improve this question
What browser are you using? – animuson Sep 18 '11 at 20:18

1 Answer

up vote 1 down vote accepted

If I'm understanding correctly then this will work. Put the thumbs div within the image container like so:

<div id="main-wrapper">
    <div id="image">
        <img src="img.jpg" />
        <div id="thumbs">
            <a href="#">Link 1</a>
            <a href="#">Link 2</a>
            <a href="#">Link 3</a>
        </div>
    </div>

</div>

And then change where the position:relative is defined:

div#main-wrapper
{
    width: 100%;
    background-color: #000000;
}

div#main-wrapper div#image
{
    margin: 0 auto;
    width: 800px;
    height: 600px;
    background-color: #1D9DDD;
    position: relative;
}

div#main-wrapper div#thumbs
{
    position: absolute;
    width: 600px;
    height: 400px;
    background-color: #FF212C;
    bottom: 0;
    right: 0;
}
share|improve this answer
And you'll find a fiddle here - jsfiddle.net/22NnS/4 – simnom Sep 18 '11 at 20:22
If, semantically, it doesn't make sense for #thumbs to be a child of #image, you could set top: -600px; position:relative; for #thumbs and it will display as intended. – Jonathan Wilson Sep 18 '11 at 20:30

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.