• Resolved irinaniko

    (@irinaniko)


    Hi all,
    how can I hide an entire “section” when the view is in mobile mode?

    For example, I want to hide the Galery Section. It seems to make problems, and give:

    Image elements have no explicit width and height

    which affect the Page Speed ??

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author FameThemes

    (@famethemes)

    Hi,

    You can add this custom CSS code in Appearance > Customize > Additional CSS, to hide a section on the mobile view.

    @media (max-width: 767px) {
        #section-ID {
            display: none
        }
    }

    Change section-ID by your real section ID in the customizer.

    Thread Starter irinaniko

    (@irinaniko)

    Great, thank you!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to hide a section on mobile device’ is closed to new replies.