Hello!
I am trying to customize the background on specific pages to have images. I have tried adding the code:
{% if request.path contains ‘about-us’ %}
body { background-image: url({{ 'lemons.jpg' | asset_img_url: 'original' }}); background-repeat: no-repeat; background-size: cover; }{% endif %}
to theme.liquid and base.css but neither resulted in a change. Am I using the correct code or putting it in the correct location? @Hardik29418 (I saw this code in response to the debut theme)