Show sidebar widget
-
Hi,
On a mobile phone, my sidebar widgets are hidden unless you click a little button to show the widgets. But a lot of people miss the little button. Is it possible to make the sidebar widget menu show at all times on a phone and only if someone pushes the button it is hidden. Right now it’s hidden until a visitor presses it to show. This is currently the default of the theme on all pages.
Thank you.
The blog I need help with is: (visible only to logged in users)
-
Hi there, to make the sidebar visible on narrower screens, add the following Media Query to the bottom of your custom CSS.
@media screen and (max-width: 959px) { .sidebar-toggle { display: none; } #secondary { display: block; } } -
-
- The topic ‘Show sidebar widget’ is closed to new replies.