Reply To: Space problem!!

Home Forums Support Space problem!! Reply To: Space problem!!

Home Forums Support Space problem!! Reply To: Space problem!!

#101334
Tom
Lead Developer
Lead Developer

Looks like you’re using some sort of page builder plugin?

The first two rows (one has a slider, one is just a 40px space) are still present on mobile, and creating the empty space.

Does your page builder plugin allow you to add a custom class to each row? If so, add a class like this: hide-on-mobile

Then add this CSS:

@media (max-width: 768px) {
      .hide-on-mobile {
            display: none;
      }
}