• Resolved jekax

    (@jekax)


    Hello,

    I am trying to apply the custom CSS to WP Mobile Menu. But the problem is these setting applying to general configuration (for PC and for mobile devices). How I can apply only for mobile devices?

    Thanks!

    The code

    .textwidget {
    display: none;
    }

    .widget-area {
    display: none;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Rui Guerreiro

    (@takanakui)

    Hi @jekax,

    Try this one instead. Replace the 759px by the desired maximum resolution.

    @media only screen and (max-width:759px) {
    .textwidget {
    display: none;
    }
    
    .widget-area {
    display: none;
    }
    }
    Plugin Author Rui Guerreiro

    (@takanakui)

    Will close the topic for now. If you need further help let me know.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Custom CSS’ is closed to new replies.