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 ☕.
B2B Solution & Custom Pricing | Product Labels by BSS
Need help from our expert? Kindly share your request with us via community@bsscommerce.com
By investing 30 minutes of your time, you can unlock the potential for increased sales,...
By Jacqui Sep 11, 2024We appreciate the diverse ways you participate in and engage with the Shopify Communi...
By JasonH Sep 9, 2024Thanks to everyone who participated in our AMA with 2H Media: Marketing Your Shopify St...
By Jacqui Sep 6, 2024