Hi,
Is there a way to reduce the vertical gap between each widget area in the footer of this site on mobiles only please ?
Thanks in advance
Hugues
Hey Hugues,
Try the following CSS:
@media only screen and (max-width: 767px){
.responsive #top #wrap_all .flex_column{
margin-bottom: 0px !important;
}
}
If the space is not reduced enough for you using 0px, negative numbers can also be used.
Best regards,
Jordan
Thanks Jordan,
I’ve used this code using negative margin as suggested:
/* reduce footer widget vertical spacing mobiles */
@media only screen and (max-width: 767px){
.responsive #top #wrap_all .flex_column{
margin-bottom: -10px !important;
}
}
HOWEVER This has the unintended consequences of reducing the gap between the buttons and the images below on the homepage so they now touch on mobiles. Is there another way of targeting the vertical space between each footer widget on mobiles without affecting other areas of the site please ?
Thanks in advance
Hugues