[Resolved] footer (mobile site)

Home Forums Support [Resolved] footer (mobile site)

Home Forums Support footer (mobile site)

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #62207
    Tristan

    Hey there!

    Just wondering if its possible to adjust the height of the footer size on the mobile version?
    My footer is quite thin on the main site but when the mobile version kicks in it goes very thick.

    Something like @media screen and (max-width: 768px) {
    .site-footer {
    height???

    Thanks a lot!

    Tristan

    #62220
    Tom
    Lead Developer
    Lead Developer

    Hi Tristan,

    The height of the footer is decided using padding.

    So you could do something like:

    @media screen and (max-width: 768px) {
          .site-info {
                padding: 10px 0;
          }
    }
    #62234
    Tristan

    Worked like a charm, thanks so much!

    #62365
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.