Search code examples
csstwitter-bootstrap-3media-queries

Slider Element Hides on Mobile


I have small problem but i unable to resolve it that my slider shows on desktop fine . whenever i run website on mobile image hide 20% from left side . please check and reply .thank you .website here


Solution

  • You can use MediaQuery of css :

    @media only screen and (max-width: 600px) { 
      #your-element {
        display:none;
      }
    
    }
    
    #your-element{
    display: block;
    }
    

    For more detail please go to here