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 1:18 pm
#20679
Keymaster
Hi,
Maybe try something like this:
@media only screen and (max-width: 480px) {
.asp_content {
color: rgba(0, 0, 0, 0) !important;
font-size: 0px !important;
line-height: 0px !important;
}
.asp_content>span.highlighted,
.asp_content .etc {
display: none;
}
}
This should very likely get rid off white spaces as well.