Hiding Slider on Mobile Devices and Tablets

Viewing 3 posts - 1 through 3 (of 3 total)
  • #22693
    psychobreak
    Participant

    Hi,

    Thank you for the great theme Daniel. I’ve been using it for 4 years. How can I hide slider on mobile devices and tablets? Also can I hide tags on single posts just for mobile and tablets?

    Thanks,

    #22694
    Daniel Tara
    Keymaster

    Enter this code under Custom CSS:

    @media (max-width: 1152px) {
        /* Hide the slider */
        #slider {
            display: none;
        }
    
        /* Hide tags on single posts */
        .entry-tags {
            display: none;
        }
    }
    #22734
    psychobreak
    Participant

    Worked great. Thank you.

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.