I need to be able to have a colored outline around the icon boxes, say about 4px in thickness like this:
I’m sure there is a HTML code to put in the Quick CSS box that I’m just missing. Can you please help?
Also would like the text to changed to a lighter shade when hovering on it (have it so the icon does that, but cannot figure out the text hover code).
Thanks!
Hey advteksol,
Thanks for getting in touch with us!
On what page are the icon boxes located? We need to inspect the element so that we can provide you with the CSS to achieve what you want.
Best regards,
Jordan
In the private content section
Hi,
Please try the following in Quick CSS under Enfold–>General Styling:
.iconbox_top .iconbox_content {
border: 3px solid orange;
}
Thanks,
Rikard
Great, but how do you make it so the box and the content shift to a different color on hover. As I mentioned, I got the icon to do it using this code:
#top .iconbox:hover .iconbox_icon {
background: #FF8133 !important;
border: 4px solid #FF8133;
}
But I can’t find the right code to make the outlined box and text shift.
Thanks.
Hi,
Try the following:
.iconbox_top:hover .iconbox_content {
background-color: #ff6000 !important;
}
.iconbox_top:hover .iconbox_content_title {
color: #fff !important;
}
Best regards,
Jordan
Thank you.