Title: Hide sidebar
Last modified: August 21, 2016

---

# Hide sidebar

 *  Resolved Anonymous User 13889996
 * (@anonymized-13889996)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/hide-sidebar-3/)
 * Hi Ben! Can I disable sidebar in mobile view? It appears at the end of the post
   and visitors needs to scroll so much.
 * Thanks for your help,
 * Pablo.

Viewing 4 replies - 1 through 4 (of 4 total)

 *  [.](https://wordpress.org/support/users/techievous/)
 * (@techievous)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/hide-sidebar-3/#post-5121830)
 * Try this:
 *     ```
       @media (max-width: 899px) {
       	.sidebar-primary-container {
       		display:none;
       	}
       }
       ```
   
 *  [Kye](https://wordpress.org/support/users/gmax21/)
 * (@gmax21)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/hide-sidebar-3/#post-5121831)
 * Hey there.
 * Not sure if there is a theme option there, but you could use this CSS:
 *     ```
       @media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape)  {
       	.sidebar-primary-container {display:none;}
       }
       @media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) {
       	.sidebar-primary-container {display:none;}
       }
       ```
   
 * This will let you do different things based on the orientation of the screen.
   Currently the CSS will simply hide it from display.
 * It targets a screen size between 320px and 480px
 * Hope this helps.
 *  Thread Starter Anonymous User 13889996
 * (@anonymized-13889996)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/hide-sidebar-3/#post-5121943)
 * Thank you, Timothy. It works!
 *  [Kye](https://wordpress.org/support/users/gmax21/)
 * (@gmax21)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/hide-sidebar-3/#post-5121960)
 * Awesome, that’s what I love to hear! 🙂
 * Have a great day!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Hide sidebar’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/ignite/1.84/screenshot.png)
 * Ignite
 * [Support Threads](https://wordpress.org/support/theme/ignite/)
 * [Active Topics](https://wordpress.org/support/theme/ignite/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/ignite/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/ignite/reviews/)

 * 4 replies
 * 3 participants
 * Last reply from: [Kye](https://wordpress.org/support/users/gmax21/)
 * Last activity: [11 years, 8 months ago](https://wordpress.org/support/topic/hide-sidebar-3/#post-5121960)
 * Status: resolved