What is the code to adjust the size of the icon list circle & font in the middle? I need to scale them down a bit (approx 75-80 % of what they currently are). I’m assuming I’ll need to adjust the header text / padding etc. next to it?
Thanks!
– John
Hi,
To adjust the circle size, you can you use this
.avia-icon-list .iconlist_icon {
height: 45px;
width: 45px;
line-height: 40px;
}
Then change the character font size with this.
.iconlist-char {
font-size: 22px;
}
Align the icon by adjusting the line-height on .avia-icon-list .iconlist_icon.
Regards,
Ismael
that’s awesome Ismael. Thanks bud