Take a look at my HTML code:
<div class="footer-social">
<span>Get in touch:</span>
<li><a href="http://www.facebook.com">
<img src='http://www.womenactionmedia.org/cms/assets/themes/crate/images/social/facebook.png' />
</a></li>
<li><a href="http://www.twitter.com">
<img src='http://grfx.cstv.com/schools/wis/graphics/icon_twitter24.jpg' />
</a></li>
<li><a href="http://www.youtube.com">
<img src='http://mylzh.net/wiki/worldofwarcraft/images/5/5d/Icon-youtube-22x22.png' />
</a></li>
Here is the CSS that I am using:
.footer-social { float: right; margin-top:5px;}
.footer-social li { display: inline;}
.footer-social span { margin-top: -20px;}
You can view my jsfiddle here: http://jsfiddle.net/qNTL2/
I am trying to center the text "Get in touch:" with the images, but no matter what I do, it doesn't seem to work. Can anyone offer any insights or solutions to this problem?
Any assistance would be greatly appreciated! Thank you!