• thelittlewildone

    (@thelittlewildone)


    I’m trying to adjust my foot logo sizes. I’ve got it figured out for desktop but the related size on mobile is too small. Is there a code to only adjust the the mobile sizing of a footer logo?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • e_baker

    (@e_baker)

    Hey @thelittlewhildone,

    You can use a CSS media query to make that that happen. Just use something like below:

    @media screen and (max-with:768px) {
      #footer .site-logo img {
        width: 100%;
      }
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Changing footer logo size on mobile devicecs’ is closed to new replies.