Title: Sidebar Horizontal bar.
Last modified: August 21, 2016

---

# Sidebar Horizontal bar.

 *  Resolved [PaoloMorales](https://wordpress.org/support/users/paolomorales/)
 * (@paolomorales)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/sidebar-horizontal-bar/)
 * Hi, how can I make the horizontal bar of the menu to be disappeared.
    Here is
   an [image](http://i.imgur.com/kcfGiEb.png)
 * In my childs theme css code i have these lines.
 *     ```
       body,
       button,
       select,
       textarea {
       	font: 400 93.8%/1.5 Noto Sans, Verdana, Arial;
       }
   
       .sidebar {width: 20%;}
       .site.sidebar-style-constant {width: 80%;}
       .sidebar {font-size: 0.813em;}
       .sociallink svg, .sociallink img {
       	height: 1.688em;
       	width: 1.688em;
       	margin: 0 0.5%;
       }
       h2 {
       	font-size: 0.750em;
       }
       ```
   
 * BR
    Paolo

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

 *  [sparky672](https://wordpress.org/support/users/sparky672/)
 * (@sparky672)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/sidebar-horizontal-bar/#post-4600514)
 * If the container with the scrollbar is `.sidebar`, then you can control the scroll-
   bars individually…
 *     ```
       .sidebar {
           overflow-x: hidden;  /* horizontal scrollbar hidden */
           overflow-y: auto;    /* vertical scrollbar as needed */
       }
       ```
   
 * Otherwise, you should attack the root problem which is content wider than your
   container. Perhaps make the container a little wider, and/or remove any superfluous
   padding.
 *     ```
       .sidebar {
           padding: 0;
           width: 22%;
       }
       ```
   
 *  Thread Starter [PaoloMorales](https://wordpress.org/support/users/paolomorales/)
 * (@paolomorales)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/sidebar-horizontal-bar/#post-4600518)
 * sparky672 I appreciate your help man, the first one `overflow-x: hidden;` did
   the trick. Thanks :).

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

The topic ‘Sidebar Horizontal bar.’ is closed to new replies.

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

## Tags

 * [horizontal](https://wordpress.org/support/topic-tag/horizontal/)
 * [sidebar](https://wordpress.org/support/topic-tag/sidebar/)

 * 2 replies
 * 2 participants
 * Last reply from: [PaoloMorales](https://wordpress.org/support/users/paolomorales/)
 * Last activity: [12 years, 3 months ago](https://wordpress.org/support/topic/sidebar-horizontal-bar/#post-4600518)
 * Status: resolved