Home › Support Forums › Theme Support › Pinboard › desktop/mobile › Reply To: desktop/mobile
Daniel Tara
Keymaster
You can add this media query to your custom CSS:
@media (max-width: 736px) { #sidebar-header { display: none; } }
736px is the width of the viewport on iPhone 6 Plus in landscape mode which is currently the widest viewport on a smartphone. If you want to also hide it on tablets you can change it to 768px for portrait mode or 1024px for landscape mode.