Align Text To The Center Of Icons
i want to align the text under the icons to the icons image here is the fiddle link: http://jsfiddle.net/J2N2P/
Solution 1:
change this to your CSS, You'll get align imgs and text in the center:
CSS
.icon_middlespan {
display:block;
margin: 0 auto;
text-align:center;
}
.icon_middleimg {
padding: 010px;
display: block;
margin: auto;
}
Post a Comment for "Align Text To The Center Of Icons"