Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #80540
    jwyrem
    Member

    Hi, how can make the featured slider not visible on mobile? I like how it looks on a desktop, but on mobile it is harder to read and not necessary.

    Thank you!!

    #80552
    wensolutions
    Participant

    Hi jwyrem,

    You can add this custom CSS in your theme options to remove featured slider for mobile view. Go to Appearance-> Customize-> Theme Options -> Custom CSS and paste following code snippet.

    /* Smartphones (portrait and landscape) ----------- */
    @media only screen and (min-device-width : 320px) and (max-device-width : 640px) {
    
    #feature-slider {
        display: none;
    }
    
    }

    Hoping this tips will work for you.

    Thank you

    #80559
    Sakin
    Keymaster

    @wensolutions: Thanks wensolutions for the custom css

    @jwyrem
    : post in your site URL when you are asking questions so that we can provide your better support with custom css focused to your site.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Remove Featured Slider for mobile view?’ is closed to new replies.