Okay
  Public Ticket #970888
Footer
Closed

Comments

  •  2
    danielrueda started the conversation

    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.

  •  1,558
    Laborator replied

    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


      Documentation         Join Kalium Users Group