• I’m trying to hide the home slider on mobile (where it says ‘Embrace Your Calling’)

    On this site: https://wildfirewomen.co.uk/

    I used the code:

    @media only screen and (max-width:767px){

    .ht-home-slider-section{
    display: none !important;
    }

    }

    But haven’t had any luck.

    Suggestions for a fix? Thanks very much for any advice!

Viewing 1 replies (of 1 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello catillest,

    Try below css code.


    @media screen and (max-width: 480px){
    #ht-home-slider-section {
    display: none;
    }
    }

    Hope this will helps you.

    Thanks!

Viewing 1 replies (of 1 total)
  • The topic ‘Hide Home Slider for Mobile’ is closed to new replies.