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!
What do you mean style "simple" selected? Where can I even select a style? I cant find what you are saying... Also how can I update the colors for those icons?
It is because you are using link="..." when all HTML elements are using href="..." Second thing is that you cannot link any HTML element you want, you have to use <a> tags. So it should be like this:
We use cookies to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners who may combine it with other information that you’ve provided to them or that they’ve collected from your use of their services.
Cookies are small text files that can be used by websites to make a user's experience more efficient.
The law states that we can store cookies on your device if they are strictly necessary for the operation of this site. For all other types of cookies we need your permission. This means that cookies which are categorized as necessary, are processed based on GDPR Art. 6 (1) (f). All other cookies, meaning those from the categories preferences and marketing, are processed based on GDPR Art. 6 (1) (a) GDPR.
This site uses different types of cookies. Some cookies are placed by third party services that appear on our pages.
You can at any time change or withdraw your consent from the Cookie Declaration on our website.
Learn more about who we are, how you can contact us and how we process personal data in our Privacy Policy.
Please state your consent ID and date when you contact us regarding your consent.
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>