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

Hello! I`am looking to have the vendor name show above the product title instead of below it.(debut theme)

Hey @Juan786 ,

vendor name on the product page above the product title. Do the following changes in sections/product-template.liquid file.

Add the following code above the tile

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

  {% endif %}

Let me know if this works for you.

Thanks!

1 Like

Hey, thanks it worked but now the vendor is centered for some reason. I would like it to be aligned to the left. Like the product title.

Adding

.template-product .price__vendor {
text-align: left;

}

to the theme.css.liquid didn`t work.
}

@Juan786 ,

Is it possible to share your website URL. I will check and provide a solution.

Thanks!

1 Like

@dmwwebartisan i sent you a private message with the url and the passcode of the page.

Hey @Juan786 ,

add the following code at the bottom of your assets/theme.scss.liquid file.

.price__vendor dd {
    margin-left: 0px;
}

Thanks!

1 Like

Thank you for assistance.

Hi,

it worked out well, but now we lost the link function, that with a click on the brand, you are directed on the brand description page.