How can I adjust the footer menu columns and social media icons on my website?

Hi! I’m trying to figure out how to do a few more things in my footer.

For the columns, how do you narrow the footer menu columns closer together. Currently:

To this:

Also, how do you align the social media icons so the icons and texts are aligned in the middle? Currently:

To this:

Lastly, is there a way to make text font size of the copyright bigger?

The website is https://thirstyrhino.myshopify.com/

and password is skeipe

Thank you in advance!

@thirstyrhino try this css in base.css

@media screen and (min-width: 750px) {

.footer__content-top.page-width {
max-width: 1030px;
width: 90%;
}

}

.footer-block__details-content .list-menu__item–link {
padding-bottom: 0 !important;
}

1 Like

Hi @thirstyrhino ,

Go to Assets > base.css and paste this at the bottom of the file:

/* width content */
footer .page-width{
	max-width: 1140px !important;
}
/* icon */
footer .list-menu__item{
	display: flex !important;
    align-items: center;
}
footer .list-menu__item svg{
	margin-right: 5px;
}

Hope it helps!

1 Like