Hey Guys! Hoping to achieve the following look on the footer with the Logo (large white logo)
We are using Dawn theme and I am ok at adding CSS etc but otherwise not great with code but hoping to achieve this fairly simply, any help would be muchly appreciated!!
1 Like
Hello @ByAprilCo ,
To achieve a full-width logo in the footer section, follow these steps:
-
Go to “Online Store” > “Themes” and click “Edit Code.”
-
In the footer.liquid file, add the following HTML code:
html
– Paste the link of logo image uploaded on Shopify.
- Customize the CSS in the same file, typically within a style tag at the top:
.footer-logo {
width: 100%;
text-align: center; /* Adjust alignment as needed */
}
.footer-logo img {
max-width: 100%;
height: auto;
}
- Kindly ensure that the size of the image matches the desired width for a full-width appearance.
I hope the solution helps you.
Please let me know if you have any queries.
Thank you.
1 Like
This is PERFECT! Thank you so much!!