Archived topic
Align nav nenu in footer widget
3 replies · Started by Martinho on February 10, 2021
Hi,
Trying to align a nav menu in footer widget 1 (and only footer widget in generatepress theme). I've put the following CSS in additional CSS, but nothing
.footer-widget-1 {
text-align: center;
width: 100%;
overflow: hidden;
}
The site: rsite.hbg.pt
regards
Martinho
Hi there,
try this CSS:
#menu-subpaginas {
display: flex;
justify-content: space-between;
align-items: center;
}
Some other options for the flex justify-content property can be seen here:
https://www.w3schools.com/cssref/css3_pr_justify-content.asp
Thanks! Also for the inofrmation on the properties (y)
You're welcome