Ahoy,
I added a custom class attribute to my icon box called no-icon and inspected the page using my inspector tool. I have several icons boxes used in my site but want to remove some of icons and circles just leaving the box. I than added this code to my in hope of removing that icon and circle from certain element but it doesn’t seem to work.
no-icon.iconbox_icon.heading-color {
display: none;
}
Have any clues to why this isn’t working? I’m going to be using the no-icon class on a few different elements on a few different pages.
Hey mcraig77,
I didn’t find the class “no-icon” on your pages, but I’m thinking your code should like like this:
.no-icon .iconbox_icon.heading-color {
display: none!important;
}
If this doesn’t help please post a direct link to your page with the element.
Best regards,
Mike
Ahoy Mike,
That seems to work! I figured out the issue.
Thanks!