See the sample widget at http://jsfiddle.net/4B2Bc/ The problem is that the image 开发者_开发知识库and the text below the image should be centered in the td, whereas it is aligned left.
change:
.w_61532_article
{
text-align: center;
}
to
.w_61532_article
{
margin: 0 auto;
}
And you are fully centered.
精彩评论