Hi all,
I have a testimonial section on my website, but I cannot locate where the background image is being pulled from.
I am a bit new to navigating Shopify, and I’ve narrowed it down to this “Extra Class for section” portion as the source of that image, but I can’t figure out how to swap or replace since I’m not sure where it’s actually pulling from.
Dumb question probably but smarter minds appreciated!
1 Like
Hi @ISparks099
Please share your store URL so i can provide you a solution.
Thanks!
Remove this URL from your code.
class= bg-red-texture
{ url(//cdn.shopify.com/s/files/1/0059/1108/5146/files/bg-red-v2_2000x.jpg?v=4051203489594765595) no-repeat center center }
then it will work properly.
thanks!
Thanks for this! This part of the code is what I’m having some difficulty locating in our store settings, though. I’ll keep looking
1 Like
@ISparks099
Take a backup of your store before implementing the solution below.
-
Go into Online Store> Themes> Actions> Select “Edit Code”
-
Go to the Assets directory.
-
Click on theme.scss.css file.
-
In this file search for .bg-red-texture
-
Remove or replace the URL in green
.bg-red-texture {> background: url(//cdn.shopify.com/s/files/1/0059/1108/5146/files/bg-red-v2-m_2000x.jpg?v=6176182971407044052) no-repeat center center;> background-size: cover;> padding: 2rem 0 0;> color: #fff; }> @media only screen and (min-width: 769px) {> .bg-red-texture {> background: url(//cdn.shopify.com/s/files/1/0059/1108/5146/files/bg-red-v2_2000x.jpg?v=4051203489594765595) no-repeat center center;> padding: 4rem 0 1rem; } }
If you feel uncomfortable with editing the code by yourself, I can help but will need access to the store.
Regards,
Sarvanshu
1 Like