Gap between two lines is much at footer in debut theme

The gap between lines under contact us and warehouse is much. I want to decrease it. How to do it? Please help

Store URL: https://greendeerkids.myshopify.com/

ps. green

1 Like

Hello @Avantika01

To change the font size, add this code to your theme.css file.

Navigate to online store >> Click edit theme code.

Now find theme.css and paste the following code.

@media (max-width: 768px){
.site-footer__item {
    margin-bottom: 18px !important;
}

}

Change the value of margin-bottom value to adjust according to your needs.

Hope it helps.

1 Like

It decreses gap between two sections. Buut I want to decrease gap between phone no and working day and email under contact us. Similarly for warehouse.

Hello @Avantika01

please replace the code with this

@media (max-width: 768px){
.site-footer__rte p{
    margin-bottom: 5px !important;
}
}