I want my content dock to also appear on mobile. What can I do?
I noticed there was a thread in January 2024 that stated a bug, and used this code to hide the doc on mobile:
@media (max-width: 768px) {
.tco-content-dock {
visibility: hidden;
}
}
I changed it to
@media (max-width: 768px) {
.tco-content-dock {
visibility: visible;
}
}
but still need your help, as that didn’t work.
Thanks!