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

    On http://37.60.235.189/~anselada (pw in private content), I am struggling a bit with the footer area. I’ve managed to get the footer menu to remain centered even on mobile screens using the code below. But what I can’t seem to do is get the additional lines to stop running overtop of the copyright line. Have tried making the copyright socket relative, clearing both, adding padding only for mobile…it seems such a simple thing but I can’t seem to get it fixed!

    .responsive #socket .sub_menu_socket {
    display: block !important;
    text-align: center;
    float: none;
    clear: both;
    }
    .responsive #socket .sub_menu_socket ul{
    margin-bottom: 0;
    }
    .responsive #socket .sub_menu_socket li{
    display: inline-block;
    float: none;
    }

    #668093

    Hey kaylesimon!

    Please add following code to Quick CSS

    @media only screen and (max-width: 480px) {
    #socket .copyright {
        margin-top: 75px;
    }
    #socket {
        min-height: 130px;
    }}

    Regards,
    Yigit

    #668110

    Thank you SO much! I set one up for max-width 768 as well but you gave me exactly what I needed.

    #668130

    Hi!

    You are welcome! Let us know if you have any other questions or issues!

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Copyright Socket doesn't move out of way on Mobile’ is closed to new replies.