Tagged: ,

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #427384

    Another quick question:

    How can I stop the footer displaying on mobile devices where the sidebar moves to below the content?

    Thank you,

    Becca

    #427449

    Hey Becca!

    Thank you for using our theme.

    In custom.css or Enfold -> General Styling -> Quick CSS field put the following:

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

    You can also replace 767 with 480.

    Alternativ you can use the following to hide the footer section:

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

    Best regards,
    Günter

    #912872

    better doing it with a function for more pagespeed?!

    #912878

    Hi,

    Are you asking or making suggestion for a better way to do this?

    Best regards,
    Jordan Shannon

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.