Hy all, i have a small issue to fix in my footer.. like you can see here www.puntohotel.it footer appears like compressed, it doen’s occupy the whole space of the page.. can someone help me with this? maybe i need to add a custom code?
Thanks all!
Hy all, i have a small issue to fix in my footer.. like you can see here www.puntohotel.it footer appears like compressed, it doen’s occupy the whole space of the page.. can someone help me with this? maybe i need to add a custom code?
Thanks all!
Hi, @davideross .
Thanks for your message, I would be happy to take a closer look into this with you. Just for some further context, what Theme are you using and have you done any custom coding to it?
oh sorry i didn’t specify.. i am using flex theme and i didn’t take customizations.. i did some changes after the update but just some paddings and background colours..
Compared to the original theme, it looks like the margin is no longer showing in the container.
If you can add this to your style css then the columns should sit evenly.
.container { margin:0 auto; }
Hi @davideross ,
Please follow these steps:
.footer__extra-content .container {
max-width: 1200px;
width: 95%
}
.container{
margin: 0 auto;
}
@media only screen and (max-width:480px) {
.footer__extra-content .container {
width: 100%
}
}
Hope it helps!