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
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 :)



