Hello, in the desktop version of my site “Contact Us” and “Quick Links” are super close to each other. How do I make them further apart? Thank you!
How do I increase the space between Contact Us and Quick Links in footer of desktop version of site?
Hi @Simon159 ,
There is how you can do it
- Open theme editor
- Open file called base.css
- On the end of this file add this code
@media screen and (min-width: 750px){
.footer__content-top .grid {
column-gap: 14rem;
}
}
- Save the theme
- you can increase or decreas the value of column-gap: 14rem; from 14 to up or down to adjust the space.
Thank you.
Hafiz