If you have a look at the Hueman demo site https://demo-hueman.presscustomizr.com/ and my own site, you’ll see that by default the social icons are larger than on your site.
You may be using a child-theme of Hueman to do site customization?
Your site is using Inline CSS to style those icons, and inline styles take precedence over those in a stylesheet, unless you use the !important
keyword.
Therefore, without knowing too much about your theme customisations and plugins, I would try entering the following code in [Appearance > Customise > Advanced options > Additional CSS] section (it’s up to you if you want to go smaller or larger than 30px, or maybe even chose something like 1.5rem instead).
.social-links li a {
font-size: 30px !important;
}
Let me know how you get on ??
-
This reply was modified 2 years, 1 month ago by jtonline.
-
This reply was modified 2 years, 1 month ago by jtonline.