Hello I would like to customize all the elements in my footer and make it all flushed to the right in the same alignment as my “CART” button.
This is what it currently looks now
This is how I wanted it to be
I hope someone could help me. Thank you very much
1 Like
Which theme are you using?
Dawn theme
Here is my wesbite: www.constructionlayers.com
PW: CollectionThree
Hope you can help me
Hi @clayinfo
Check 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 only screen and (min-width: 750px){
.footer-block__details-content {
display: flex;
justify-content: flex-end;
}
.footer__content-top .grid {
flex-direction: row-reverse;
}
.footer__content-bottom-wrapper--center {
justify-content: flex-end !important;
}
.footer__content-top.page-width {
padding-bottom: 0px !important;
}
.footer__content-bottom.scroll-trigger.animate--slide-in {
padding-top: 0px !important;
}
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Hi @clayinfo
This is Richard from PageFly - Shopify Page Builder App
Please add this code to your theme.liquid above the to get this solved
Step 1: Online Stores > Themes > More Actions > Edit code
Step 2: click on theme.liquid and paste the code above the
Hope this can help you solve the issue
Best regards,
Richard | PageFly
Hello @clayinfo 
In Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom
.footer-block--menu {
width: 100%;
}
.footer-block--menu .footer-block__details-content {
display: flex;
justify-content: flex-end;
}
The result
Hope that helps!
I typed in the codes you sent, but could you help me fix the following?
- I want it to align with my “CART” text
- The “CONTACT” button became misaligned with the rest of the footer elements
- Alignment of the elements become more misaligned when i make my browser smaller
- I want the my footer row elements and copyright section to be closer together in terms of spacing