# Customize based on shop locale

You can use the "shop.locale" parameter to make conditionals in your design when using child themes and you want to apply som changes only to a specific shop.

Example

{% if shop.locale == 'da' %}
    <div class="bg-green text-white text-center">
        Welcome to our Danish shop!
    </div>
{% endif %}

Example with multiple countries

{% if shop.locale == 'da' or shop.locale == 'no' %}
    <div class="bg-green text-white text-center">
        Welcome to our Scandinvian shop!
    </div>
{% endif %}