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

Reply To: Hide description on mobile

#20679
Ernest MarcinkoErnest Marcinko
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.