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%;
}
sparky672 I appreciate your help man, the first one overflow-x: hidden; did the trick. Thanks :).