Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #708983

    hii. how can i center the footer only on mobile view?

    View post on imgur.com

    can i display on menu iteam per line?

    is use this code at the moment:

    /*Footer mobile zentrieren*/
    @media only screen and (max-width: 480px) {
    .copyright {
        width: 100%;
        text-align: center;
    }
    #socket .social_bookmarks {
        position: relative;
        top: 90px;
        right: 35%;
    }
    }
    #709037

    Hey alexanderjohannes,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    
    @media only screen and (max-width: 767px) {
    #socket .sub_menu_socket li {
        line-height: 20px;
        width: 100%;
        text-align: center;
    }
    }
    

    Best regards,
    Jordan

    #709106

    Hey Jordan. Much better: http://imgur.com/a/2Qiun

    How can i (A) reduce space here and (B) bring social bookmark to the bottom center. This is the code at the moment:

    /*Footer mobile zentrieren*/
    @media only screen and (max-width: 480px) {
    .copyright {
        width: 100%;
        text-align: center;
    }
    #socket .social_bookmarks {
        position: relative;
        top: 90px;
        right: 35%;
    }
    }
    @media only screen and (max-width: 767px) {
    #socket .sub_menu_socket li {
        line-height: 20px;
        width: 100%;
        text-align: center;
    }
    }
    #709191

    Hey!

    Please add following code to Quick CSS

    @media only screen and (max-width: 480px) {
    #socket .copyright {
        margin-bottom: -20px;
    }
    #socket .social_bookmarks {
        position: relative;
        top: 150px;
        float: left;
        left: 33%;
    }}

    Then remove following code from your custom CSS

    @media only screen and (max-width: 480px) {
    #socket .social_bookmarks {
        position: relative;
        top: 90px;
        right: 35%;
    }}

    Regards,
    Yigit

    #709194

    Great. Thank you.

    #709200

    Hi!

    You are welcome!

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘center footer’ is closed to new replies.