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:
Below is what it looks like when it goes into a wider screen:
I was able to achieve this by adding the following codes:
In theme.liquid
{% if request.path contains 'about' %}
{% endif %}
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!

