• Resolved Ping79

    (@inge-van-langen)


    Hi, is it also possible to not show the pink container on smartphone / tablet? Or in a smaller view? When I open my website on my smartphone / tablet, the pink container is zo big, you cannot see the header-image properly anymore.

    Thnks!

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

    For this use Below Code in custom css Field.

    /* Portrait tablet to landscape and desktop */
    @media (min-width: 768px) and (max-width: 979px)  { 
    
    .pink-container {
    display:none !important;
    
    }
    .slidesDescription
    {
    display:none !important;
    }
    
    }
    /* Landscape phone to portrait tablet */
    @media (max-width: 767px) {
    .pink-container
    {
    	display:none !important;
    
    }
    .slidesDescription
    {
    display:none !important;
    }
    
    	}
    /* Landscape phones and down */
    @media (max-width: 480px) {
    .pink-container
    {
    	display:none !important;
    
    }
    .slidesDescription
    {
    display:none !important;
    }
    
    }

    Thanks.

    Thread Starter Ping79

    (@inge-van-langen)

    Thanks a lot!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Pink container on smartphone/tablet’ is closed to new replies.