hello
how i can have my socials icons on the footer instead of the socket ?
facebook instagram and twitter
thanks
Hey mediafacto,
Please try this in a custom html widget:
<ul class='noLightbox social_bookmarks icon_count_3'><li class='social_bookmarks_facebook av-social-link-facebook social_icon_1'><a aria-label="Link to Facebook" href='#' aria-hidden='false' data-av_icon='' data-av_iconfont='entypo-fontello' title='Facebook'><span class='avia_hidden_link_text'>Facebook</span></a></li><li class='social_bookmarks_instagram av-social-link-instagram social_icon_2'><a aria-label="Link to Instagram" href='#' aria-hidden='false' data-av_icon='' data-av_iconfont='entypo-fontello' title='Instagram'><span class='avia_hidden_link_text'>Instagram</span></a></li><li class='social_bookmarks_twitter av-social-link-twitter social_icon_3'><a target="_blank" aria-label="Link to Twitter" href='https://twitter.com/#/' aria-hidden='false' data-av_icon='' data-av_iconfont='entypo-fontello' title='Twitter' rel="noopener noreferrer"><span class='avia_hidden_link_text'>Twitter</span></a></li></ul>
Best regards,
Rikard
i just can se the facebook icon not the other….
try:
#footer .social_bookmarks {
display: inline-flex;
}
and if you like to get rid of the border and colorize the icons to white:
#top #footer .social_bookmarks li {
border-right: none !important;
}
#top #footer .social_bookmarks li a {
color: #fff !important;
}