I want to make the Icon Box circle size smaller and the icon larger. It appears correct in the Advanced Layout Editor, but always displays much larger.
I added the following code, but it has no effect:
#top .iconbox.av-no-box .iconbox_icon {
width: 30px;
height: 30px;
line-height: 30px;
font-size: 30px;
}
Try this:
#top .iconbox.av-no-box .iconbox_icon {
width: 30px !important;
height: 30px !important;
font-size: 30px !important;
}
Hey!
Thanks for the help cyhouz. Let us know if you have any other questions PCD.
Best regards,
Elliott
Thanks cyhouz and Elliot. Unfortunately, the code still has no effect. Can you log in and see if something is overriding it? Thanks in advance.
Hey!
Should be working now.
.iconbox_icon {
width: 30px !important;
height: 30px !important;
line-height: 30px !important;
font-size: 20px !important;
}
Cheers!
Elliott
That did it. Thanks!