Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Close icon options / styling › Reply To: Close icon options / styling
April 21, 2016 at 5:01 pm
#8430
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!