I have a little problem centralizing image on wordpress
I mean, I don't have actually, I could simply use <center> tag, and it'll work just fine, but I want to make it faster haha
I mean, on CSS I have on style, newwpstyle and all my posts go on that style, right?
and ALL image with links, is ALWAYS centralized...
so, instend of editing the code, and put the center tag on the pic, I want to make it faster, to every image with link, already put it on the center... here the CSS code that i'm using
.newwpstyle a img {
display: block;
margin-left: auto;
margin-right: auto
}
it kinda works, the image is on the center, but each image in one different line, when they need to be all on the same line...
I tried with display: inline; and display: table;
both don't worked...
I also tried text-align:center;
don't work too =/
any ideas?