can someone help me with changing the look of a footer? I would like the footer to be a little bit bigger and wider/bolder, so i would pop out more. It should match the font of my store. I have tried to fixinng it but nothing worked. Thank you
o make the footer bigger, wider/bolder, and match the font of your store, you’ll need to modify the CSS of your theme. Here’s how you can do it:
Follow these steps:
Online Store > Themes.
Edit code.
Open your theme.css or theme.scss.liquid file (or add custom CSS if your theme has that option).
Paste the above code at the bottom of the file.
Save the changes and check your store.
footer {
font-family: inherit; /* Ensures the font matches your store's main font */
font-size: 1.2rem; /* Increase the size of the text */
font-weight: bold; /* Make the text bold */
padding: 30px 0; /* Increase space inside the footer */
}
footer a {
color: inherit; /* Make sure footer links match the text color */
font-size: 1.2rem; /* Ensure link text is also bigger */
font-weight: bold;
}
footer .site-footer__links,
footer .site-footer__address {
margin: 20px 0; /* Add space between footer elements */
}
Let me know how it looks after you try this or if you need further assistance!