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!
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.
}
@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!
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.


