Cynthia
Cynthia

Reputation: 5403

What is causing the horizontal scrolling in my responsive WordPress layout?

I am developing a website using WordPress and a modified version of the Quark theme. It is going pretty well, but one problem I am running into is that on screens narrower than 790px, a horizontal scroll appears at the bottom of the browser and I can't figure out what is causing it.

Here is the URL: http://yousavewithsolar.emorydayclients.com

I know there are other responsive issues w/ the homepage, but those I know how to fix. This one is the one giving me fits.

Any help is much appreciated!

Upvotes: 0

Views: 2581

Answers (1)

ZEE
ZEE

Reputation: 5849

add this to your body tag :

body {

  overflow-x: hidden;

} 

Upvotes: 1

Related Questions