How can i have the vendor name show above the product title instead of below it? (debut theme)

Hi, I would like vendor names to appear above product titles in the collection pages.

@Juan786

You need to do on the snippets/product-card-grid.liquid file. Please check the following screenshot.

{% if section.settings.show_vendor and product %}
    
      <dt>
        {{ 'products.product.vendor' | t }}
      </dt>
      <dd>
        {{ product.vendor }}
      </dd>
    

  {% endif %}

Hope this helps.

Thanks!

1 Like

Hey, thank you for taking your time to help out.It did move the vendor above the product title but the below one still is there.

Do you know a solution for this problem?

@Juan786 ,

Sure, I will check and let you know soon.

Thanks!

1 Like

I managed that out by myself but thank you. :slightly_smiling_face:

1 Like

@Juan786

No problem. Let me know if any issues.

Thank you :slightly_smiling_face:

Do you know how to adjust the height between vendor and product title?

Hey @Juan786 ,

Please add this to the bottom of your theme.scss.liquid file.

.price__vendor {
    margin: 5px 0 0px !important;
    }

Thanks!

1 Like

Thank you!

1 Like