I would like to set hte color of the iconbox background. What is the CSS to do this?
Thanks!
Hi lwolfe63!
First create the iconbox element, then post a link to its page here.
Regards,
Josue
Ok I did it – here’s the link: http://www.wolfeinteractive.net/goandtell
It’s on the homepage – there are two.
Thanks!
Hi!
For the first icon:
.avia-builder-el-1 .iconbox_icon {
background: blue !important;
}
For the second one:
.avia-builder-el-5 .iconbox_icon {
background: green !important;
}
Change green/blue for the desired colors.
Cheers!
Josue
Thank you – that changed the icon background color – I want to change the box color, not the circle with the icon in it. Go to the page now and look and you’ll see what I mean. Thanks for you quick reply.
Hello!
Try this:
.avia-builder-el-5 .iconbox_content{
background: green !important;
}
And if you want the inner container too:
.avia-builder-el-5 .iconbox_content .iconbox_content_container{
background: green !important;
}
Best regards,
Josue
OK that did the trick! Thanks!