Align footer content
-
How can I align the footer content so it matches something like on the site below?
Many thanks
The blog I need help with is: (visible only to logged in users)
-
Hi, add the following to your custom CSS to center the footer credits and social navigation.
.footer-left { width: 100%; text-align: center; } .footer-right { width: 100%; } .footer-right .menu-items { text-align: center; } -
This works a treat thank you.
Do you know if it’s possible to add text above the social menu e.g. ‘Keep Updated’.
I added the custom copyright text, but can’t seem to get a solution that does the above.
-
Hooray and you are welcome!
For the text above the social icons, add the following.
.social-list:before { content: "Keep Updated"; display: block; text-align: center; }You can also add additional styling such as color, font-size and such to the above.
-
-
- The topic ‘Align footer content’ is closed to new replies.