Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
Hi there!
I’m so happy with this theme. My web is completely done (http://danielrueda.net), but I have a minor problem. A few days ago I decided to change the size of the container so that it looks great on bigger screens. I used this custom css:
} .container { width: 100%; } .wrapper { padding: 0 80px; } @media screen and (max-width: 768px) { .wrapper { padding: 0; } }But now the footer looks like a Full-width footer even thought that option is off. How can I fix this!?
Love,
Daniel.
Hi Daniel,
The reason why this is happening is because you have not changed only the content container width but the whole containers all over the site, and footer also uses this container, add the following CSS to show the footer normal again.
.main-footer .container { width: 1170px; }Best regards,
Laborator Team