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!
Hey Oby4455,
You should just be able to change it to:
#footer {
width: 100%;
text-align: center;
}
Best regards,
Jordan Shannon
Thank you for your answer. I did try this but it is not working unfortunately…
Hi,
Please provide admin login privately, and a screenshot of the exact area that you would like centered.
Best regards,
Jordan Shannon
Thank you! I attached you the link of the website, credentials and a screenshot of the footer menu I would like to be centered!
Anyone?
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
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
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