-->

WordPress Center Alignment Issue

I recently upgraded my WordPress to 3.1 and I wondered why the aligncenter attribute inside the img tag does not work anymore. The alignright works okay. It is only the center alignment that is having problems.

So it seems WordPress changed a few things and themes that do not display the image alignment correctly need the extra code (below) added to make it work. You can add this CSS code at the bottom of your styles.css.

1
2
3
4
5
.aligncenter, div.aligncenter, img.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}

Found this post useful? Donations appreciated. Every little $ helps.

Related Posts with Thumbnails