Basically looking to underline the headers with a solid line full width of column in the footer. Plus I want to increase the padding between the 2 columns, Please can someone help?
1 Like
Hi @Richey
Do you mean like this?
If it is 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:
.footer__content-top .grid h2 {
border-bottom: 1px solid;
padding-bottom: 10px;
}
.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet {
column-gap: 6rem;
}
- And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like
Hi @Richey ,
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file theme.liquid
Step 3: Paste the below code at the bottom of the file → Save
Hope my solution works perfectly for you!
Best regards,
Oliver | PageFly
1 Like
Just like that. Thanks so much!
1 Like

