I’ve been working on this site for a while, and after a brief hiatus have returned to find that the three social media links in the footer have stopped working. All other links on the page, including the other links in the footer, still work as intended. I’m puzzled because the code hasn’t been touched(to my knowledge) and it was working perfectly before the hiatus.
Any ideas what could be going on?
<div class="social">
<ul>
<li><a href="https://twitter.com/ZOPArealty"><img src="<?php echo get_template_directory_uri(); ?>/img/twitter.png" alt="ZOPA%20Twitter" /></a></li>
<li><a href="http://www.facebook.com/ZopaRealty"><img src="<?php echo get_template_directory_uri(); ?>/img/facebook.png" alt="ZOPA%20Facebook" /></a></li>
<li><a href="http://www.linkedin.com/company/zopa-realty"><img src="<?php echo get_template_directory_uri(); ?>/img/linkedin.png" alt="ZOPA%20Linkedin" /></a></li>
</ul>
</div><!-- end social -->
Simply add a
position: relative;to your.socialclass. This works for me as a quick bugfix.