i'm using wordpress and i would like to center an image of the top of my post. I tried many way but nothing work. So here is the code :
<div class="entry-thumb">
<img width="183" height="260" src="http://localhost/bdtresor/wp-content/uploads/gmb1_mister.president.2.JPG" class="attachment-newsanchor-large-thumb size-newsanchor-large-thumb wp-post-image" alt="Image du post 222">
</div>
the css
.entry-thumb {
max-width: 1000px;
/*margin: auto;*/
}
.entry-thumb {
border : 1px solid black ;
}
img {
max-width: 100%;
height: auto;*/
margin-left: auto;
margin-right: auto;
}
I don't know how to do.When i pit a margin-left : 50px , it works but it's not centered , but if i put margin-left : auto , nothing happened... Thank you for you're help