Reply To: Close icon options / styling

#8430
Ernest Marcinko
Ernest Marcinko
Keymaster

Hi!

Yes, both possible actually. First, make sure to have the close icon enabled. Then use this custom CSS to hide it on devices with resolution above 479px:

@media only screen and (min-device-width: 479px) {
    .proclose {
        display: none !important;
    }
}

Then, to remove the border from around the icon, use this custom CSS:

.proclose svg {
    box-shadow: none !important;
}

I hope this helps!

Best,
Ernest Marcinko

If you like my products, don't forget to rate them on codecanyon :)