Divi lets you add some of the most common social icons to the header and footer, and plugins such as Divi Booster let you add many more. These show up in a fixed order. Here are some ways to adjust the order of the footer icons.
Reverse the Order of the Footer Icons
If the order you want is the reverse of what you currently have, you can simply reverse the icons by adding this CSS:
/* Reverse footer icons - https://divibooster.com/change-the-order-of-social-icons-in-divi/ */
#main-footer .et-social-icons {
display: flex;
flex-direction: row-reverse;
}
/* End Reverse footer icons*/
Specify the Order of the Footer Icons
If you want more control, you can explicitly set the order of the icons like so:
/* Set footer icon order - https://divibooster.com/change-the-order-of-social-icons-in-divi/ */
#main-footer .et-social-icons {
display: flex;
}
#main-footer .et-social-icons li:nth-of-type(1) {
order: 3;
}
#main-footer .et-social-icons li:nth-of-type(2) {
order: 2;
}
#main-footer .et-social-icons li:nth-of-type(3) {
order: 1;
}
/* End Set footer icon order */
0 Comments