Hi!
I would like to know if it’s possible to move a little bit to the right the Scrollbar from the Left Sidebar. Or if it’s not possible at least to hide the scrollbar. Right now it looks to tight to the text as you can see in the image: http://imgur.com/ghJwOC3
2 Answers
In order to move the scrollbar to the right, you can add the following CSS code to the file style.css in your theme folder (wp-content/themes/wallpress/):
#sidebar div.sidebarTrackerV { left: 0 !important; }
Or, if you want to delete the scroll bar, you can replace the above CSS code with this one:
#sidebar div.sidebarTrackerV { display: none !important; }
Both way work!
Thank you.
Both worked perfectly!
Please login or Register to submit your answer