I’m trying to increase the size of the icon and background on .iconbox_top with the following:
.iconbox_top .iconbox_icon {font-size: 40px; padding: 20px;}
Problem is the icon shifts off center – see image link below.
Thanks.
Hi M1000000!
Can you send us a link to the page where your using it?
Regards,
Elliott
Just got inline – link below:
See homepage.
Line 14 child css:
.iconbox_top .iconbox_icon {font-size: 40px; padding: 20px!important;}
icons off center.
Hey!
Try this out instead.
.iconbox_top .iconbox_icon {
font-size: 40px;
padding: 20px 25px 20px 15px !important;
}
Best regards,
Elliott
Still slightly off center – trying to work out what’s gpoing on through css here as looking for a flexible solution that will allow icon size (and icon background) to be increased as required (specific value of 40px just an example). Can you shed any light?
Many thanks.
Hey!
Looks fine on my end. If you change the size again then you just need to play around with the padding to get it looking centered.
.iconbox_top .iconbox_icon {
font-size: 40px;
margin-left: -30px;
padding: 22px 30px 22px 15px !important;
}
Cheers!
Elliott