
March 10th, 2013, 06:41 PM
|
|
Registered User
|
|
Join Date: Mar 2013
Posts: 5
Time spent in forums: 2 h 59 m 15 sec
Reputation Power: 0
|
|
|
Images stacking incorrectly in IE8
This is only a problem in IE8. IE7 is fine and so is IE9 aswell as other browsers.
I want the images to sit side by side but they are stacking incorrectly under each other
Any suggestions?
Html is as follows:-
Code:
<span class="socials fright">
<a href="https://plus.google.com/" target="_blank"><img src="images/gplus.jpg" alt="" /></a>
<a href="http://www.linkedin.com/" target="_blank"><img src="images/linkedin.jpg" alt="" /></a>
<a href="http://www.twitter.com/" target="_blank"><img src="images/twitter.jpg" alt="" /></a>
<a href="http://www.facebook.com" target="_blank"><img src="images/facebook.jpg" alt="" /></a></span>
<div class="clear"></div>
</div><!--footer-->
CSS as follows:-
Code:
#footer{
padding-top:15px;}
#footer a{
text-decoration:none;
color:#5c5c5d;
font-size:13px;}
#footer a:hover{
text-decoration:underline;}
.socials img{
margin-left:5px; display:inline;}
|