Osclass forums

Support forums => Themes => Bender => Topic started by: Resta on July 16, 2018, 09:07:28 pm

Title: css for autohide or do not show description in mobile view
Post by: Resta on July 16, 2018, 09:07:28 pm
Hello,

I am looking for css that will automatically hide the listing description in mobile view (just like gallery view). Thanks!
Title: Re: css for autohide or do not show description in mobile view
Post by: WEBmods on July 16, 2018, 10:02:02 pm
Hello,

You need to use @media queries. Here's an example that will hide the element with id "description" for screens with the width less than 768px.

Code: [Select]
@media (max-width: 768px) {
    #description {
        display: none;
    }
}

Regards.
Title: Re: css for autohide or do not show description in mobile view
Post by: Resta on July 17, 2018, 03:31:04 pm
Patrick,

Thanks for the tip.