Shopify themes, liquid, logos, and UX
Hi, I am trying to add these 2 floral png's on the left and ride side of the site, anchored to the sides. How do I add them into both sections? I would like for them to be positioned how they are, where they overlap in between sections. The website is https://www.marlyngraceboutique.com/ and the password is "NoAccessYet"
Hi @LiefdeApparel ,
Go to Online store -> Themes -> Edit code -> search for the theme.liquid file
Copy this code to the end of the file:
<script> window.addEventListener("load", (event) => { const flowerImage1 = document.createElement('img'); const flowerImage2 = document.createElement('img'); flowerImage1.src='https://cdn.pixabay.com/photo/2018/02/27/21/16/spring-3186641_1280.png'; //replace it with the link to your first flower image flowerImage2.src='https://cdn.pixabay.com/photo/2017/05/30/10/07/branch-2356442_1280.png' //replace it with the link to your second flower image flowerImage1.alt = 'Flower1'; flowerImage2.alt = 'Flower2'; const newsletterDiv = document.querySelector('.newsletter.center'); newsletterDiv.appendChild(flowerImage1); newsletterDiv.appendChild(flowerImage2); newsletterDiv.style.position = 'relative' flowerImage1.setAttribute('width', '200px') flowerImage2.setAttribute('width', '200px') flowerImage1.style.position = 'absolute' flowerImage2.style.position = 'absolute' flowerImage1.style.left = '20px' flowerImage2.style.right = '20px' flowerImage1.style.top = '100px' flowerImage2.style.bottom = '-200px' flowerImage2.style.zIndex = 100 flowerImage2.style.zIndex = 100 }); </script>
Result:
Hope it helps @LiefdeApparel
If our suggestions are useful, please let us know by giving it a like, marking it as a solution, or donating here ☕.
Product Labels by BSS | B2B Solution & Custom Pricing
Need help from our expert? Kindly share your request with us via community@bsscommerce.com
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025