Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #29787
    knzon
    Guest

    I have a bar scrolling down the right side of the page. How can I get rid of the bar so that the homepage content fills the entire screen left to right? 

    #29788
    arnelc
    Guest

    Hello Knzon,

    Thanks for your question in regards to removing the vertical scroll bar.  This can be done, but only with custom CSS coding.  I have found a set of code that you can apply to your site using the Customizer > Advanced > Custom JS and CSS section.  The problem is that it does affect the behavior of the background image of the site. 

    html {
    overflow: scroll;
    overflow-x: hidden;
    }
    ::-webkit-scrollbar {
    width: 0px; /* remove scrollbar space /
    background: transparent; / optional: just make scrollbar invisible /
    }
    / optional: show position indicator in red */
    }
    :-webkit-scrollbar-thumb {
    background: #FF0000;
    }

    My recommendation to you would be to speak with an experienced web designer if you are not experienced in making CSS changes. You can use the code above, but at your own risk.  We do not typically provide custom code. Make sure that you make a backup of your site before you make any changes.  This way you can recover is something  happens.

    If you have any further questions or comments, please let us know.

    Kindest regards,

    Arnel C.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘how to get rid of scroll bar down the right side of home page’ is closed to new replies.