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 am trying to center an image that is located within a div, which is then located inside of another div. Not to worry, I will post some code so you can all see what the heck I'm talking about here.

HTML:

<div id="container">

    <div id="featureimage"  style="width: 845px">
        <img src="Stylesheets/images/globkey.jpg" alt="" />
    </div>

</div>

CSS:

body {
    background-color: #383838;
    margin: 0; padding: 0;
    font-size: small;
    color: #383838;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    }
* html body {
    font-size: x-small; /* for IE5/Win */
    font-size: small; /* for other IE versions */
    }

img {
    border-style: none;
}



/* Conatiner */ 
#container {
    background-color: #fff;
    width: 845px;
    margin: 0 auto;
    overflow: hidden;
    }


#featureimage{
    width: 620px;
    padding: 0 0 0 15px;
    margin: 20px 0;

/* I have also tried without padding and no margin!*/
    }   

#featureimage img{
    margin-left:50%;
    margin-right:50%;
    width:360px;
    height:360px;
    }

I am fresh out of ideas here! Been at this for ever!

Thank you for any help,

Evan

share|improve this question

4 Answers

up vote 13 down vote accepted

Images are inline elements, to center them, you can use text-align: center; or set them to display: block and set margin: 0 auto;

share|improve this answer
6 seconds faster than me :P – Joseph Marikle Aug 16 '11 at 23:24
This worked. Thank you. – user725913 Aug 16 '11 at 23:26

just for sure add text-align: center to your #container, and then add margin: 20px auto; to your featureImage. If you want img to be centered within featureImage should work (featureImage will inherit text-align: center).

share|improve this answer
If you do that, it'll center EVERYTHING which doesn't seem desired, but perhaps it could be. – Patrick Robert Shea O'Connor Aug 16 '11 at 23:50
but it will also work in IE :) i did not invented IE, do not blame it on me :) – mkk Aug 16 '11 at 23:53
#featureimage{
    width: 620px;
    padding: 0 0 0 15px;
    margin: 20px 0;
    text-align:center;
}
share|improve this answer
are you trying to set text-align: center to the image? – mkk Aug 16 '11 at 23:26
you'd need to remove the margin-left and margin-right from this example. – Patrick Robert Shea O'Connor Aug 16 '11 at 23:27
@Evan oops... wrong element. try that one – Joseph Marikle Aug 16 '11 at 23:28
@mkk no :P was a typo – Joseph Marikle Aug 16 '11 at 23:28
downvote? mine works... jsfiddle.net/jmarikle/njCPU/1 – Joseph Marikle Aug 16 '11 at 23:29

I would try this css:

#featureimage{
  width: 620px;
  padding: 0 0 0 15px;
  margin: 20px auto 0px auto;
  text-align: center;
}

I may be totally off on this one, as I haven't tested it out.

share|improve this answer

Your Answer

 
discard

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