Tagged: centered
Hi. I’m trying to figure out how to put the footer menu in the socket (instead of the footer), right about the Copyright line. I want to center both the footer menu and the copyright line. Any ideas?
Hi dburton77!
Please go to Appearance > Menus and create your menu and check “Enfold footer menu” under Menu Settings
Cheers!
Yigit
O.K. That works. However, I would like the Footer Menu to appear ABOVE the copyright. And I’ve like both the copyright and the footer menu to be centered.
I was able to center the copyright with the following CSS:
span.copyright {
width: 100%;
text-align: center;
}
Could you tell me how to edit the Footer.php file to move the Copyright below the Footer Menu?
Or is this another way to achieve that?
Also, how can I center that footer menu?
Many thanks!
Hey!
You can try this:
#socket .sub_menu_socket {
position: absolute;
clear: both;
text-align: center;
width: 100%;
top: 5px;
}
#socket .sub_menu_socket > div {
display: inline-block;
}
#socket .copyright {
float: none;
position: absolute;
text-align: center;
width: 100%;
bottom: -20px;
}
#socket {
min-height: 50px;
}
Best regards,
Ismael
Perfect! Works great. Thank you!