Social Media on Widget Footer Area
Hi there, can you please advice how did you do to add the social media list on this footer's demo? http://themes.muffingroup.com/be/bistro2/
I'm looking at the widget footer area where it says: "Find us here". I thought there would be a social media widget but haven't found the way to implement this on my site. Thanks!
Comments
those are icons added in the HTML widget.
http://themes.muffingroup.com/be/theme/shortcodes/typography/#iconbar
They look better with the style simple selected.
thanks
You can change the size like this:
<i class="icon-facebook" style="color: #A10604 !important; font-size:20px;" link="#" target="" size="large"></i>
Also remember that the <i> tags needs to be closed with </i>
<i class="icon-facebook" style="color: #A10604 !important; font-size:20px;" link="https://www.facebook.com/CBS/" target="_blank" size="large"></i>
<i class="icon-instagram" style="color: #A10604 !important; font-size:20px;" link="https://www.instagram.com/CBS/" target="_blank" size="large"></i>
</div>
Second thing is that you cannot link any HTML element you want, you have to use <a> tags.
So it should be like this:
<a href="https://www.facebook.com/CBS/">
<i class="icon-facebook" style="color: #A10604 !important; font-size:20px;" target="_blank" size="large"></i>
</a>