Home › Forums › Theme support › Strong Theme: Sidebar Menu appears on bottom of Page on Mobile devices › Reply To: Strong Theme: Sidebar Menu appears on bottom of Page on Mobile devices
Hi,
you can add this css code to your style.css file to hide the sidebar on smaller screens:
@media only screen and (max-width: 1059px) {
.mainsection .sidebar {
display:none !important;
}
}
This will hide the sidebar.