This is the code that works:
{% if header.background_images.top_section is not empty %}
{% set image = header.background_images.top_section|first %}
{% set image_url = url(image.path) %}
.top-bg {
background-image: url({{ image_url }}) !important;
}
Currently, I have to upload the background image separately in each language...
Is there a way for the background image to be automatically applied in all languages?