Just finished creating my own icon fonts through Fontello. I’ve increased the stroke size of the icon fonts in illustrator and tried various sizes but to no avail. My icon fonts still look very small and show very faint. Is there a way in css that I can make the icon circle padding smaller so that it can show my icons larger? Or is there another work around that you would recommend.
Hi Kimberly!
Try the following CSS
.main_color.iconbox_top .iconbox_icon {
font-size: 18px;
padding: 20px;
}
let us know if anything else is needed
Regards,
Basilis
That worked with some slight modifications. Unfortunately the larger the font size I go the more off center it puts it and I really don’t want to change my padding too much. Is there a way to force center the icon?
Hi,
Try adding this css code in Quick CSS:
#top .main_color.iconbox_top .iconbox_icon {
padding: 10px 13px 10px 5px;
}
Just adjust the paddings as you see fit. Hope this helps :)
Best regards,
Nikko