Adjust Background Image on only one specific page

Adjust Background Image on only one specific page

Danceddiction
Excursionist
31 0 8

I'm trying to make a background image span multiple sections on only one specific page. I was able to do this successfully with the exception of when the screen size changes from a standard desktop size to a wider screen size. 

 

Below is what it looks like standard: 

Danceddiction_0-1727995512812.png

 

Below is what it looks like when it goes into a wider screen:

Danceddiction_2-1727995569185.png

 

I was able to achieve this by adding the following codes: 


In theme.liquid

<!-- Aboust Us Background Image -->
{% if request.path contains 'about' %}
<style>
body {
background-image: url("https://cdn.shopify.com/s/files/1/0706/9505/9711/files/Gradient_Background.png") !important;
background-repeat: no-repeat;
background-size: cover;
}
</style>
{% endif %}
<!-- About Us Background Image -->

Then I made the background for all sections on this page transparent in the base.css file with similar code below: 

#shopify-section-template--18442698719487__rich_text_nWyUAD .gradient {
  background: transparent !important;
}


I am wondering if this might be limited by the side-margins of each section not being 100%? Anyways any chance someone could help me out? 

Website: www.danceddiction.com/pages/about-us

Password: testword

 

Thanks!

Replies 3 (3)

Shadab_dev
Shopify Partner
1443 74 161

The best way I have learnt to give these bg images is using an image tag and then positioning it absolute with respect to the parent section, this way the image does not cut or anything.

Buy me Coffee, if you feel i was helpful. Email Me here or WhatsApp me with this link for any help with shopify theme customizations or any project in web dev. If this is helpful, please Like and Accept the solution.
Danceddiction
Excursionist
31 0 8

Unfortunately my html/css is pretty limited. I got to this point by following along online. I'm not sure exactly what you mean or how to implement it.

Shadab_dev
Shopify Partner
1443 74 161

All right. Let me try this first with your store url. Then will go for next possible solution

Buy me Coffee, if you feel i was helpful. Email Me here or WhatsApp me with this link for any help with shopify theme customizations or any project in web dev. If this is helpful, please Like and Accept the solution.