Archived topic
Remove Footer Widget and align footer text centered on mobile
3 replies · Started by Kris on March 19, 2020
Hi Tom and Crew,
I hope you all are doing well during this Covid-19 thing.
I would like to remove the center footer widget on mobile so the logo image does not show.
Also, I'd like to center align the text on the left and right widgets on mobile.
Got some starting CSS I can use?
Thanks and stay safe!
Hi Kris,
Try this CSS:
@media (max-width: 768px) {
.footer-widget-2 {
display: none;
}
.inside-footer-widgets {
text-align: center;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Thanks Leo! I just went with centered for them all. Simpler and looks better. Cheers!
No problem :)
Take care!