Site logo

Archived topic

Hide sidebar on Small Screens

1 reply · Started by panorade on June 22, 2015

Viewing posts 1–2 of 2

hy
i want hide my sidebar when the the Monitor is under 1600px
how can i hide the sidebar on Small Screens
is this possible with css
thanks achim

Give this CSS a try:

@media (max-width: 1600px) {
      .sidebar {
            display: none;
      }
}
This archived topic is closed to new replies.