kelyvin / ghost-caffeine-theme

A minimalist, Material Design inspired Ghost Theme for optimal desktop and mobile experiences
https://caffeinecoding.com
MIT License
333 stars 97 forks source link

Add social_links and no icon shown #60

Closed JKSTAFF closed 6 years ago

JKSTAFF commented 6 years ago

For example I add a commet link like this

    <!-- Comments-->
    <li class="social item hvr-grow-rotate">
        <a rel="me" target="_blank" href="http://blablabla" title="chat with us">
            <i class="fas fa-comments"></i>
            <span class="label">comments</span>
        </a>
    </li>

And I don't get any icon shown. Any way to solve that ? Thank you for coding and watching this issue.

kelyvin commented 6 years ago

Hi @Dedsic,

You may have a typo for the following line:

<i class="fas fa-comments"></i>

Can you remove the s within fas. So it should look like:

<i class="fa fa-comments"></i>

This project still uses font-awesome icon pack 4, I believe font-awesome has upgraded to 5 recently which is why you have the fas. I'll put in a ticket for me to update that soon. Let me know if that fixes your issue in the meantime!

kelyvin commented 6 years ago

Going to close this issue, feel free to reopen if you still run into any problems!