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