Careys
February 14, 2024, 1:24am
1
Hi All
I’ve got a bit of an issue. I can’t seem to work out how to remove the photo in the middle of the slideshow. Each slide has the same photo which is the site background image.
Any clues / ideas on how to remove it I would be grateful for.
I have added how I have each photo configured in the slideshow.
Hey @Careys ,
Can I have the link to your store?
Careys
February 16, 2024, 1:31am
3
Hi
The store isn’t live at the moment as it is still in development as we are working through text and images etc with the client.
Hey @Careys
You can share the preview link.
Careys
February 20, 2024, 7:59pm
5
Careys
February 27, 2024, 8:46pm
6
@ThePrimeWeb - Have you had any luck viewing the website via the Preview link? If not, please let me know how to contact you directly and I’ll send additional details.
Hey @Careys ,
Sorry flooded notifications. The store is password protected. Could you share the password or just disable it until I check the issue?
Careys
February 28, 2024, 7:54pm
8
@ThePrimeWeb - Password to site now removed.
Hey @Careys ,
I see you added this code in the base.css file
.gradient {
background: var(--gradient-background);
background-attachment: fixed;
background-image: url(https://cdn.shopify.com/s/files/1/0847/1445/5351/files/IMG_1817.jpg?v=1701642808) !important;
background-color: transparent !important;
background-position: center !important;
background-color: #000000 !important;
background-size: contain !important;
background-repeat: no-repeat !important;
}
You should change the selector from .gradient to .gradient:not(.slideshow__text)
Final code should look like,
Note: Everything within the curly braces {} are the same
.gradient:not(.slideshow__text) {
background: var(--gradient-background);
background-attachment: fixed;
background-image: url(https://cdn.shopify.com/s/files/1/0847/1445/5351/files/IMG_1817.jpg?v=1701642808) !important;
background-color: transparent !important;
background-position: center !important;
background-color: #000000 !important;
background-size: contain !important;
background-repeat: no-repeat !important;
}
Careys
February 29, 2024, 11:56pm
10
@ThePrimeWeb
Thanks for the help. Fix worked.