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

    Hello helper,

    i’m using this css for control the footer hight on desktop computers:

    #footer .widget {
    margin: 40px 0 50px 0;
    }

    How I can define other values for mobile devices?

    Thanx and greetings
    Coco

    #874464

    Hey Coco,

    Use the following media query:

    @media only screen and (max-width: 767px)  {
    
    #footer .widget {
    margin: 40px 0 50px 0;
    }
    
    }

    Adjust the margin to whatever you need.

    Best regards,
    Jordan Shannon

    #874787

    Perfect!

    Thank You

    #875089

    Hi,

    Glad we could help. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

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