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
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
Perfect!
Thank You