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'm trying to center an image (forces.png) horizontally using margin-left and margin-right auto but the image remains left-aligned. My site is http://goo.gl/cHO1u What's wrong with the code I'm using? Thanks

HTML:

<div class="section" id="presentation">
<div id="presentation-highlevel">
<p>NOTRE ENTREPRISE</p>
<p>ddfdsfdsfdsfdsjfl dfljdsfdsfjdsjfdlksj dfljdslfjldsjflkdsjflsjfdls ldf,dlsmjfdsjfsdmfjdmsjfms dfmdsfjmdsjfmdsjfmdsjfdlms mkdfmksdmfkdmsfkdsfdsmfkmldskf dfmdmkfmdkfmdlskf dfkdmfkdmkfmdskf dfmkdsmfkdsmkfmdskfdms dskfdsmkfdsmkfmdsfkd </p>
</div>
<div id="presentation-highlights"><img src="images/forces.png" alt="Picture" /></div>
</div><!--END page1-->

CSS:

#presentation
{
    height:1300px;
    background:#afc9ff; 
  background: url(../images/norway-landscape60.jpg) no-repeat center fixed; 
  -webkit-background-size: cover; /* pour Chrome et Safari */
  -moz-background-size: cover; /* pour Firefox */
  -o-background-size: cover; /* pour Opera */
  background-size: cover; /* version standardisée */
}

#presentation-highlights

{
width: 100%;
display: block;
margin-left:auto;
margin-right:auto;
}
share|improve this question

2 Answers

up vote 0 down vote accepted
#presentation-highlights {
text-align:center;
width:100%;
display:block;
margin:auto;
}
share|improve this answer
Thanks - worked like a charm! Why do I need to use "text-align" to align an image? – Greg Jul 28 '12 at 9:40
@Greg because image is not a block element. And plz vote & accept answer which helped you. – SVS Jul 28 '12 at 9:43
#presentation {
    height:100%;
    background:#afc9ff; 
    background: url(../images/norway-landscape60.jpg) no-repeat center fixed; 
    text-align: center;
}
body {
    text-align: center;
}
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.