How can I hide Content Dock on mobiles when in landscape?

Hi

I have managed to hide Content Dock on mobiles when in portrait. However the following code does not stop it appearing when viewed on an iPhone 6 when in landscape mode.

@media only screen and (max-width: 500px) {
.tco-content-dock {
    display: none;
}

}

Is there a way I can completely hide the Content Dock from mobiles as it does not display properly on a mobile if viewed in landscape?

Many thanks

R

There seemed to be a typo. Working now when I used this code:

@media ( max-width: 768px ) {
.tco-content-dock{
display: none !important;
}
}

Hey There,

We are just glad that you have figured it out a way to correct the said issue.
Thanks for letting us know!

Best Regards.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.