This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Close icon options / styling

#8430
Ernest MarcinkoErnest 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:

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

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

[html].proclose svg {
box-shadow: none !important;
}[/html]

I hope this helps!