The Divi Theme includes an option to add a menu to the footer, between the widget area and the bottom bar, like so (highlighted in orange):
By default the links are on the left. This post covers ways to move then to the center (as shown below) or the right.
Setting the Footer Menu Alignment with Divi Booster
As of Divi Booster 3.3.8, there is an option to set the footer menu alignment. You can find it at:
Divi > Divi Booster > Footer > Footer Menu > Set Footer Menu Alignment
Setting the Footer Menu Alignment with CSS
You can set the footer menu alignment using one of the following CSS snippets:
Center the Footer Menu
#et-footer-nav .container {
text-align: center;
}
Right-align the Footer Menu
#et-footer-nav .container {
text-align: right;
}
Related Post: Adding CSS to the Divi Theme
0 Comments