Hello,
I’m having the following issue that I hope someone can help me with. I have external links and social media images on one line. The external links are not “hyperlinking” when I put the social media images on the same line. They only link when the images are not there. Below is my code:
HTML
<div class="topheader">
<ul id="top">
<li><a href="#">header 1</a><li>
<li><a href="#">header 2</a></li>
<li><a href="#">header 3</a></li></ul></div>
<div class="social">
<img src="/images/rss.png">
<img src="/images/twitter.png">
<img src="/images/facebook.png">
CSS
.topheader { position: relative; z-index: 50; width: 962px; margin: 0 auto 20px; background-color: #e2e1e1; }
#top li {display: inline; list-style-type: none; padding: 10px 10px 0 20px; }
#top li a { color: #000; }
#top li a:hover { color: #b7b7b7; }
.social { position: relative; z-index: 50; margin: -60px auto 20px; padding-left: 1100px; }
Any help is appreciated. Thanks.
Amanda