Archived topic
Vertically Alight the Copyright text in footer to middle
3 replies · Started by Vish on February 1, 2019
Previously, I was using only one Navigation Menu in the footer (Aligned to right) and the Copyright text was also looking fine.
Now, I added another Navigation Menu to the footer. After that, the copyright text appears to be at the top of the footer bar (In the Desktop version of the site; the mobile site looks fine). How can I vertically alight it to the middle?
Note: Site URL included.
Hi there,
try this CSS:
@media (min-width: 768px) {
.copyright-bar {
margin-top: 1.5em;
}
}
Thank you, David :)
Glad to be of help.