Tagged: iconbox
Hi,
How do I change the background colour of an icon box without affecting the rest of the site e.g. not changing the alternate background colour?
Thanks
Hey Nick!
Enable this, set a custom class (ex: red_iconbox) to the icon box and then add this to the Quick CSS:
.red_iconbox .iconbox_icon {
background: red !important;
}
Cheers!
Josue
Hi Josue,
Thanks for this but it coloured the icon above the box and not the text area background below. Any ideas?
Kind regards, Nick
Hey Nick!
In that case the code should be:
.red_iconbox .iconbox_content{
background: red !important;
}
Best regards,
Josue
Thanks. That’s perfect.