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

    I’ve tried searching but I’m not finding the right thing. I need to make sure the footer nav doesn’t disappear with the responsive adjustment.

    I attempted using this, changing display:none to both block and inline but it shrinks up with width of the entire content area on the screen.

    /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
    @media only screen and (min-width: 480px) and (max-width: 767px) {

    .responsive #socket .sub_menu_socket{display:none;}
    }

    /* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
    @media only screen and (max-width: 479px) {

    .responsive #socket .sub_menu_socket{display:none;}

    #708005

    Hey janeyj,

    Try to add this code in Quick CSS (located in Enfold > General Styling):

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

    Let us know if it works. If it’s not working kindly post a link to your site, you can post it in Private Content section when you reply so only moderators can see.

    Best regards,
    Nikko

    #708010

    Bingo! Thanks as always!

    #708017

    Hey!

    Glad we could help :)

    Regards,
    Nikko

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Show footer navigation on mobile’ is closed to new replies.