Tagged: enfold
Instead of the copyright on the left and the footer menu on the right, I was hoping to stack and center the two (so it would be the centered footer menu on top of the centered copyright text).
What would be the css or footer.php changes that would need to occur to get this formatting?
Hey Andrea!
Thank you for using the theme!
Please use this on Quick CSS or custom.css:
span.copyright {
margin-top: 30px;
margin-bottom: 5px;
}
#socket .container > * {
float: none;
left: 50%;
-webkit-transform: translate(-50%, 0);
-moz-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
transform: translate(-50%, 0);
position: absolute;
}
Cheers!
Ismael
This works great! Thanks so much!