Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #750334

    Hello,

    I would like to center the footer menu. How can I do this in the quick CSS code ?

    I found the following code :

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

    Which does exactly what I want to do but with the copyright instead of the footer menu.

    Thank you so much in advance for your help!

    #750364

    Hey Oby4455,
    You should just be able to change it to:

    #footer {
        width: 100%;
        text-align: center;
    }

    Best regards,
    Jordan Shannon

    #750384

    Thank you for your answer. I did try this but it is not working unfortunately…

    #750388

    Hi,

    Please provide admin login privately, and a screenshot of the exact area that you would like centered.

    Best regards,
    Jordan Shannon

    #750607

    Thank you! I attached you the link of the website, credentials and a screenshot of the footer menu I would like to be centered!

    #750995

    Anyone?

    #750998

    Hey!

    Fixed it for you.
    Please clear your cache and let us know if that works.

    Feel free to post a new question if you need anything elkse

    Cheers!
    Basilis

    #751001

    Thank you for the quick reply. It’s still not centered even after I cleared the cache. What css code did you use? I don’t see anything new in the quick css section

    #751246

    Hi Oby4455,

    The login account you have provided is just a subscriber :( Anyway, try adding this css code in Quick CSS:

    #socket .sub_menu_socket {
        float: none;
        text-align: center;
        width: 100%;
        position: relative;
        z-index: 30;
    }
    
    #socket .sub_menu_socket li {
        float: none;
        display: inline-block;
    }
    
    #socket .copyright {
        float: none;
        text-align: center;
        display: block;
        position: relative;
        top: 60px;
        z-index: 5;
    }

    Hope this helps.

    Best regards,
    Nikko

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.