Hello,
I have used the following CSS to reduce the size of the icons in my icon list. And it works. Except the problem is, it reduces the size of the overall circle but the actual icon inside (the arrow, checkmark, plus sigh, whatever) is then off center. I’m not sure if it is reducing the size of the images too, but for sure they don’t move their position so it looks weird.
.avia-icon-list .iconlist_icon {
height: 40px;
width: 40px;
line-height: 50px;
}
What can I do?
Hi Dandelion222!
Please change your code to following one
.avia-icon-list .iconlist_icon {
height: 40px;
width: 40px;
line-height: 40px;
}
Regards,
Yigit
Well that was easy! I should have guessed. Thanks for your help!