adsense

How to Move the Vertical Scrollbar in WordPress





1. Log in to your WordPress account to automatically bring up your Dashboard. Click the 'Editor' link under the Appearance heading on the left side to access the area that contains the code for your WordPress site.
2. Locate the Styles heading on the right side and click the 'Stylesheet (style.css)' link underneath it. This action automatically loads the CSS code in the text box on the page.

3. Press the 'CTRL' and 'F' keys at the same time and enter 'body' in the text box that appears. Press the 'Return' key to highlight this style rule in the code.
4. Enter 'overflow-x: hidden;' inside the curly brackets of the body rule to remove the vertical scrollbar. To illustrate:
body { overflow-x: hidden; }
5. Type 'overflow-y: scroll;' to move the scrollbar to the bottom of your page so visitors can horizontally scroll from left to right. Your complete CSS code now looks like this:
body { overflow-x: hidden; overflow-y: scroll; }
6. Click the 'Update File' button at the bottom of the page, then click the title of your blog at the top to see the changes.

Comments

0 Responses to "How to Move the Vertical Scrollbar in WordPress"

Post a Comment

Popular Posts

About