Social media Icons – Bigger
-
Is there any way I can increase the size of the social media icons in the footer with out breaking the responsiveness of the site? thanks!
The blog I need help with is: (visible only to logged in users)
-
Hi there, the social icons are from a special font and you can change the size of those easily with the following CSS. Simply adjust the 16px value.
.genericon { font-size: 16px; } -
Add this code to the CSS section of the customiser and see what you think, you can increase the numeric value to make it bigger or smaller.
.footer-widget .genericon { font-size: 1.5em; }I did notice that your existing code messes up the layout on larger screens because you’re setting the navigation to be 2000px wide whenever the display is at least 1020px wide. This means that visitors can scroll sideways and see a load of blank space. Maybe try changing it to something like this so super-widescreen monitors get a one line menu:
@media screen and (min-width: 1600px) { .navigation-classic .menu-primary { width:1600px } } -
-
- The topic ‘Social media Icons – Bigger’ is closed to new replies.