Tagged: 

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #444942

    hi, i want the menu well-centered in the socket-footer. i use only the menue in the footer (i deactivatet the copyright-information by “[nolink]”).

    the situation now is:
    – on big screen: the menue is right
    – on middle screen: the menue is left and the linehigh is to less
    – on a small screen: the menue is not displayed

    how can i fix these? thx!
    xiane

    #445179

    Hey xianeK!

    Try adding this to your custom CSS.

    #socket .sub_menu_socket {
      float: none;
      left: 50% !important;
      margin: 0;
      position: relative;
      transform: translateX(-25%);
    }
    @media screen and (max-width:767px) {
    #socket .sub_menu_socket { transform: none !important; left: 0px !important; }
    }

    Regards,
    Elliott

    #445260

    it is great, it is beautiful! thx elliot.

    #445261

    but there is one thing: if i downsize the screen: the menue is cutted by the browser-window and on a small screen: the menue is not displayed.

    #445860

    Hi!

    Please add following code to Quick CSS as well

    .responsive #socket .sub_menu_socket {
      display: block !important;
    }

    Regards,
    Yigit

    #446017

    ill tried it – nope, but thank you.

    #446560

    Hi!

    It looks fine on my end. Can you take a screenshot of what your seeing? Let us know what operating system and browser your using.

    Cheers!
    Elliott

    #446710

    hi, thank you for your help.

    here are two screenshots of the actual firefox and crome-browser under macOSX-10_9_5


    i added the code in the enfold quick CSS (i also i tried this with my usual used child-theme css)

    #socket .sub_menu_socket {
    float: none;
    left: 50% !important;
    margin: 0;
    position: relative;
    transform: translateX(-25%);
    }
    @media screen and (max-width:767px) {
    #socket .sub_menu_socket { transform: none !important; left: 0px !important; }
    }
    .responsive #socket .sub_menu_socket {
    display: block !important;
    }

    #446711
    #447347

    Hi!

    I wasn’t seeing it before but I do now. Did you add some more items to the menu? Try increasing the 767 value here.

    @media screen and (max-width:767px) {
    

    Until it looks good.

    Best regards,
    Elliott

    #486727

    is fixed, thanks!

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Footer: always and centered’ is closed to new replies.