I've been experiencing an issue across various platforms where I try to place a ul list on top of a div (image or background), but the list doesn't appear. I suspect it may be appearing behind the elements. I even tried adding z-index.
Check out the JSFiddle example here
CSS
.toolbar p{ text-align: right; padding: 10px 180px 0 0; color: #fff; font-size: 26px; z-index: 1; }
.toolbar { width: auto; height: 50px; background-color: #cc1e2c; z-index: 1;}
.social-icons { z-index: 2;}
HTML
<div class="col_full toolbar">
<p>CALL NOW: +1 555.555.1234</p>
<ul class="social-icons">
<li> <a href="graphics/twitter_icon.jpg" target="_blank"> </a></li>
<li> <a href="graphics/instagram_icon.jpg" target="_blank"> </a></li>
<li> <a href="graphics/facebook_icon.jpg" target="_blank"> </a></li>
</ul>
</div>