sprucerow Posted January 25 Posted January 25 Hi there! I am trying to overlay a .png of a brushstroke over a slideshow, but I am having a little trouble with the code. Or maybe there is another way to achieve the effect? https://springbrookbc.squarespace.com Pw: c@mp1ng You can see on the alternate slides I created the images with the stroke at the bottom, but when they scroll through you can see the edges. I thought the best way around that would be to add a static image overlay so the images rotate below it. Thanks so much!
Solution jpeter Posted January 25 Solution Posted January 25 @sprucerow You can use the following CSS below. You'll need to update the URL of the background-image property to a transparent version of the brushstroke and then play around with the height property as well. CSS [data-section-id="6566207a3608ec2faeee84dc"] .slideshow-wrapper:after { background-image: url('https://www.onlygfx.com/wp-content/uploads/2019/03/14-white-grunge-brush-stroke-6.png'); height: 60px; content: ''; width: 100%; bottom: 0; left: 0; display: block; z-index: 10; background-size: cover; position: absolute; background-repeat: repeat-x; background-position-y: top; } sprucerow and tuanphan 1 1 Full stack developer who loves helping people out with anything web related. If you'd like to support me, buy me a coffee!
LuckyAndSon Posted July 16 Posted July 16 Hi @jpeter I have used this code on my website and it works perfectly for one image to be overlaid over my slideshow gallery, however I'm wanting a paper tear graphic to be both top and bottom. I've tried duplicating the code and updating the URLs and positions of my two paper tear graphics however if I add the code in twice it deletes the first image. is there a way to show two images using this?
tuanphan Posted July 19 Posted July 19 On 7/16/2024 at 6:42 PM, LuckyAndSon said: Hi @jpeter I have used this code on my website and it works perfectly for one image to be overlaid over my slideshow gallery, however I'm wanting a paper tear graphic to be both top and bottom. I've tried duplicating the code and updating the URLs and positions of my two paper tear graphics however if I add the code in twice it deletes the first image. is there a way to show two images using this? First, to add second image, you need to use :before [data-section-id="6566207a3608ec2faeee84dc"] .slideshow-wrapper:before Next, I think you need to use: top: 0; for second image If you can't make it work, you can share page url, we can help easier. Or another way, you can add a section with 2 images under slideshow, then we can use CSS code to move whole section over Slideshow section Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
belbelbelbel Posted August 15 Posted August 15 Hello @tuanphan I've followed along with your tips in this thread, which are super helpful; but am having difficulty adding a h ref to the image - could you offer any assistance? Thank you in advance! site is: www.thatsheila.com password: merlx2
tuanphan Posted August 17 Posted August 17 On 8/15/2024 at 5:23 PM, belbelbelbel said: Hello @tuanphan I've followed along with your tips in this thread, which are super helpful; but am having difficulty adding a h ref to the image - could you offer any assistance? Thank you in advance! site is: www.thatsheila.com password: merlx2 Do you use Personal or Business Plan? If Business/higher, let me know, I will adjust the code If Personal Plan, I think you can add a section under Gallery Slideshow >> Add an Image Block with Link. I will give code to move this section over Slideshow section. What do you think? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
belbelbelbel Posted August 18 Posted August 18 Hello @tuanphan the site is using a Business Plan Thank you
tuanphan Posted August 24 Posted August 24 On 8/18/2024 at 2:42 PM, belbelbelbel said: Hello @tuanphan the site is using a Business Plan Thank you Remove code I sent & use this new code. Replace amazon with desired url <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script> <script> $(document).ready(function() { $('<a href="https://amazon.com" target="_blank" class="custom-img"><img src="https://static1.squarespace.com/static/665a652de576867a26021080/t/66694e042671fd57abfd39bd/1718177284242/sheila+02.png"/>').appendTo('section[data-section-id="668ce9ead5f66752bfbf53cb"] .gallery-fullscreen-slideshow-list'); }); </script> <style> div.gallery-fullscreen-slideshow-list .custom-img { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 100%; z-index: 999999; text-align: center; } div.gallery-fullscreen-slideshow-list .custom-img img { width: 150px; } </style> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
belbelbelbel Posted August 24 Posted August 24 Great - thank you @tuanphan works perfectly. One further update request; how would I amend the code injection so that the link opens in the same window (not in a new browser tab?) Thank you!
tuanphan Posted August 26 Posted August 26 On 8/24/2024 at 5:21 PM, belbelbelbel said: Great - thank you @tuanphan works perfectly. One further update request; how would I amend the code injection so that the link opens in the same window (not in a new browser tab?) Thank you! Change this target="_blank" to this target="_self" Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
KPoggi22 Posted September 18 Posted September 18 Hello, I'm having a hard time getting my gif to overlay on my carousel images. I attempted to use the code you provided with my section id and gif URL but something's not adding up. Can you please help?
tuanphan Posted September 20 Posted September 20 On 9/19/2024 at 1:48 AM, KPoggi22 said: Hello, I'm having a hard time getting my gif to overlay on my carousel images. I attempted to use the code you provided with my section id and gif URL but something's not adding up. Can you please help? The code for Gallery Slideshow. But if you use List (People) Carousel, it will need a different code. Can you share link to page where you use carousel? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment