Tagged: 

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #438430

    Hi. I’m trying to figure out how to put the footer menu in the socket (instead of the footer), right about the Copyright line. I want to center both the footer menu and the copyright line. Any ideas?

    • This topic was modified 9 years, 6 months ago by dburton77.
    #438567

    Hi dburton77!

    Please go to Appearance > Menus and create your menu and check “Enfold footer menu” under Menu Settings

    Cheers!
    Yigit

    #441063

    O.K. That works. However, I would like the Footer Menu to appear ABOVE the copyright. And I’ve like both the copyright and the footer menu to be centered.

    I was able to center the copyright with the following CSS:

    span.copyright {
    width: 100%;
    text-align: center;
    }

    Could you tell me how to edit the Footer.php file to move the Copyright below the Footer Menu?

    Or is this another way to achieve that?

    Also, how can I center that footer menu?

    Many thanks!

    #442043

    Hey!

    You can try this:

    #socket .sub_menu_socket {
      position: absolute;
      clear: both;
      text-align: center;
      width: 100%;
      top: 5px;
    }
    
    #socket .sub_menu_socket > div {
      display: inline-block;
    }
    
    #socket .copyright {
      float: none;
      position: absolute;
      text-align: center;
      width: 100%;
      bottom: -20px;
    }
    
    #socket {
    min-height: 50px;	
    }

    Best regards,
    Ismael

    #445514

    Perfect! Works great. Thank you!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Footer Menu in the Socket’ is closed to new replies.