Matteo Boscolo
Matteo Boscolo

Reputation: 708

Prevent page from be dragged left and right in mobile version

This page I'm working on has the following issue:

I'm trying to prevent it with this, but no luck.

.body {
  overflow-x: hidden;
}

Anyone can help?

Upvotes: 1

Views: 2249

Answers (1)

Mr. Go
Mr. Go

Reputation: 577

Replace your css with :

.wrapgrid{
     overflow-x: hidden;
 }

Upvotes: 3

Related Questions