Increase size of social icons?
-
Trying to increase the size of the social media icons for the Edin theme we’re using on bainbridgeprepares.org. I’ve added these two lines to the CSS but they only change the font size, not the icon size.
.footer-navigation { font-size: 200%; }
.primary-navigation .menu-primary { font-size: 100% }
Any advice or pointers?
The blog I need help with is: (visible only to logged in users)
-
Try swapping out what you have now and using this instead:
#colophon .menu-social-container { font-size: 3em; } #colophon .menu-social-container a { visibility: hidden; } #colophon .menu-social-container a::before { visibility: visible; }Let me know if you have an problems with it.
-
Many thanks, Halluke!
Works great for the footer but the icons within the top menu are still tiny. Any idea how to reference those?
-
Oops, I missed that one as it was hidden behind the menu button.
#menu-social a { font-size: 2.5em; visibility: hidden; } #menu-social a::before { visibility: visible; } -
- The topic ‘Increase size of social icons?’ is closed to new replies.