can i make the social ikon only visable for users when they are logged in to my page?
That means when strangers visit my page they are not able to see my social ikon in the top bar:
Thanks
Hey Simon!
Try adding this to your custom CSS.
.social_bookmarks { display: none; }
.logged-in .social_bookmarks { display: block !important; }
Regards,
Elliott
Thanks works perfect, topic resolved.