I’m working on this site: https://maison-rouge-ny.myshopify.com/
The password is: thifis
I’m trying to do a few things in my footer that I’m struggling with:
-
I want to center the text in the top line
-
I want to decrease the padding between the menu items in the bottom left
-
I also want to make the “Email” placeholder in the newsletter form all caps
Can you help with some or all?
Here’s a screenshot showing what I’m trying to do:
1 Like
Hi @jasminsharp97
Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media screen and (min-width: 750px) {
.grid--4-col-tablet .grid__item {
width: 100% !important;
}
.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet {
flex-direction: column-reverse;
gap: 0;
}
.footer-block.grid__item.footer-block--menu h2.footer-block__heading {
margin-bottom: 0;
}
.footer-block__details-content a {
padding: 0;
}
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!