Hiding page sections on Mobile

Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #2775
    pszitapszita
    Member

    Hi Guys,

    Is there any way to hide ( in our case the features section ) certain page sections on the mobile devices?

    Cheers, Pete

    #2806
    livemeshlivemesh
    Keymaster

    To hide the entire section, pls use the following Custom CSS. Thanks –

    @media only screen and (max-width: 767px) {
    	#features { display: none; }
    }
    

    and to retain part of it and hide the image only –

    @media only screen and (max-width: 767px) {
    	#featured-app .fivecol.no-margin { width: 100%; }
    
    	#featured-app .sevencol { display: none; }
    }
    
    #2835
    pszitapszita
    Member

    Thanks a lot livemesh!!!!

    Cheers, Pete

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Hiding page sections on Mobile’ is closed to new replies.