Here's the CSS code I'm using:
<style type="text/css">
#box {
width:100%;
height:80px;
background-color:#eeeeee;
}
.box-inner {
width:80%;
margin:0 auto 0 auto;
text-align:center;
}
#text, #text a {
font-size:16px;
color:#F36F25;
margin:10px;
}
#text:hover, #text a:hover {
color:#666666;
text-decoration:none;
}
#text img {
vertical-align: middle;
margin-right:20px;
}
</style>
Currently, it displays the image and text inline. However, I have multiple images and text below each other. How can I align all the images in the same position below each other?
Feel free to check out this fiddle for reference: http://jsfiddle.net/8dsTu/