Hello,
Thanks for taking the time to look at this. I am using Page Builder by SiteOrigin V2.4.6 with WordPress 4.5.1 running Accesspress Parallax Pro theme. I have used this combination a lot and never had this issue before. There is a horizontal scroll bar with a bunch of whitespace to the right. The contents are responsive but the page itself is huge.
I can see the horizontal code when I inspect the page but don’t know how to get rid of it. The theme author said he thinks it is a conflict with a “div” tag. I am new to coding, so wondering in laymen’s terms, how I can fix this since there are a lot of div tags that this plugin creates… As I understand it, thanks again!
The site is http://rivertherapy.org/


Hi Jared
Unfortunately, I’m not easily finding the cause of this problem. If you don’t mind hotfixing the issue then, please, see below.
You can fix/change this with some custom CSS. If you navigate to AppearanceCustom CSS, you’ll get our custom CSS editor. Just add the following code.
/* Overflow Hotfix */ body { overflow: hidden; }You might also need to install the SiteOrigin CSS Editor.
Maybe this is the same issue I was having.
Thread: Page Builder Slider causing horizontal scroll bar
As well as the hostfix Andre mentions and the advice in the post I linked to, do double check that you don;t have any additional padding to the right sneeking in.
Just a note if you are using full with anything then you may need to use
/* Overflow Hotfix */ html { overflow-x:hidden; }instead of body
Super, thanks for your feedback naz, appreciate it.