Needing to change a background image on signup form

Hi all,

I’ve been trying to change the background image from the default image on the signup page. For reasons, I needed to set it up as a separate page, as well as being on the homepage as I need to be able to directly link it.

I’ve managed to get the code working with the signup form, but it’s defaulting to the regular background icons that come with the prestige theme.

Can someone please point me in the direction that I’m going wrong here?

Link: www.kathandkin.com/pages/signup

And here’s the current code in the page.liquid:


  

  

  
  

Hello,

Replace this

{%- unless section.settings.image != blank -%}
          
            {{ 'lifestyle-1' | placeholder_svg_tag: 'PlaceholderBackground__Svg' }}
          

        {%- endunless -%}

with this one

{%- unless section.settings.image != blank -%}
          
           
          

        {%- endunless -%}

Don’t forget to add img ur in src

Thanks

1 Like

Thank you for the response. Somethings definitely changed, I’ve added the image in the assets folder and changed the code as said. But now getting a broken image link.

Not sure if I’ve done anything wrong here:


  

  

  
  


1 Like

Once again, thank you! It is now showing the image, but really small and centered on the top. Any easy solution so the image fills the entire section at all? Thank you