Archived topic
Footer Width not uniform
5 replies · Started by Digital on July 1, 2020
Dear team,
I'm using the GP theme for my new website and it's shaping up quite well. However I have a slight hiccup with the footer width.
I'm using 4 widgets in the footer and want them to take up 25% space each. However footer 4 seems to be taking up most of the space and footer 1 is quite congested.
Can you please help fix this?
Cheers!!
Hi there,
in Customizer > Additional CSS you have this:
@media (min-width: 1025px) {
.footer-widgets .footer-widget-1 {
width: 15%;
padding-right: 80px;
}
.footer-widgets .footer-widget-2 {
width: 20%;
}
.footer-widgets .footer-widget-3 {
width: 30%;
}
.footer-widgets .footer-widget-4 {
width: 35%;
}
}
@media (max-width: 768px) {
.footer-widgets .footer-widget-1,
.footer-widgets .footer-widget-2,
.footer-widgets .footer-widget-3,
.footer-widgets .footer-widget-4 {
width: 100%;
text-align: center;
}
}
Delete that so the theme sets the widths or edit those % to match what you need
That's fantastic.. It works perfectly now..
Thanks David
You're welcome