Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Hide description on mobile › Reply To: Hide description on mobile
January 8, 2019 at 12:34 pm
#20674
Keymaster
Hi,
Custom CSS is the best option. Your code is almost correct, the ‘.asp_content’ is the class name. However instead of ‘display:none’ changing the text color to transparent is the way to go, as otherwise it will hide the whole result.
@media only screen and (max-width: 480px) {
.asp_content {
color: rgba(0, 0, 0, 0) !important;
}
}
This should hopefully do the trick.