Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi there, I am on spotlight theme, how do I change it so that the image in my footer is placed above the menu, newsletter and social media icons right in the middle. I want those to be next to each other underneath the image.
Or at least I want the image at the top of the footer and the rest just underneath it and that it isn't packed together
Please take the website of PAL sporting goods as a reference but then the image above the menu instead of other way around.
https://0ke0pt-uy.myshopify.com/collections/apparel-winter-24-25
Hi @Louver ,
This is Amelia from PageFly - a Landing Page Builder App,
Here's how you can adjust the footer in your Spotlight theme to place the image above the menu, newsletter, and social media icons:
Go to your Shopify admin panel.
Navigate to Online Store > Themes.
Click on Actions > Edit code next to your Spotlight theme.
In the left sidebar, find and click on the Sections folder.
Open the footer.liquid file.
Locate the section where the footer content is defined. It might look something like this:
<div class="footer-content">
<!-- Menu, Newsletter, Social Media Icons -->
</div>
2. Move the image code above the footer content. For example:
<div class="footer-image">
<img src="{{ 'your-image-url.jpg' | asset_url }}" alt="Footer Image">
</div>
<div class="footer-content">
<!-- Menu, Newsletter, Social Media Icons -->
</div>
In the Assets folder, open the theme.css or base.css file.
Add the following CSS code to style the footer:
.footer-image {
text-align: center;
margin-bottom: 20px;
}
.footer-content {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.footer-content > div {
margin: 10px;
}
I hope that my solution works for you.
Best regards,
Amelia | PageFly
Please let me know if it works by giving it a Like or marking it as a solution!
➜ Optimize your Shopify store with PageFly Page Builder (Free plan available)
➜ Weekly updated Shopify tutorials on YouTube
All features are available from Free plan. Live Chat Support is available 24/7.