I'm developing a new template using Joomla 3.0 with the Gantry framework and I'm running into an issue with my Font Awesome icons not displaying. Now, this framework has Font Awesome already built into the framework and all I am doing is overriding the template's CSS with custom CSS styles and leaving ALL of the template files in tact.
That being said, this is how I'm coding the Font Awesome icons into my page (fairly simple):
<div class="container">
<ul>
<li><a href="#"><i class="icon-twitter"></i></a></li>
<li><a href="#"><i class="icon-facebook"></i></a></li>
<li><a href="#"><i class="icon-youtube"></i></a></li>
<li><a href="#"><i class="icon-google-plus"></i></a></li>
<li><a href="#"><i class="icon-pinterest"></i></a></li>
</ul>
</div>
Here is the CSS (again, fairly simple):
/* ---------- Social Media ----------*/
.custom_socialMedia ul{
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
}
.custom_socialMedia li{
font-size:2.5em;
display:inline;
}
.custom_socialMedia .container{
width:100%;
margin: 0 auto;
}
.custom_socialMedia p{
font-family:'Yanone Kaffeesatz', Helvetica, Arial, sans-serif;
font-weight: 200;
color:#F47820;
font-size:1.5em;
text-align:center;
}
.custom_socialMedia a {
color: #999;
text-decoration: none;
}
.custom_socialMedia a:hover {
color: #666;
}
.custom_socialMedia i {
width: 1em;
height: 1em;
cursor: pointer;
padding:0em 1em;
}
Since this is my first post I cannot post an image, but the youtube icon is not displaying however the other four are in Firefox, Chrome & IE, perfectly as expected.
I'm hoping someone has an explanation for this.