Skip to main content
All Collections1:1 Product RecommendationsSetup and Configuration
How to display vendor names on LimeSpot product recommendations
How to display vendor names on LimeSpot product recommendations

How to display vendor names in LimeSpot product recommendation boxes.

Gillian avatar
Written by Gillian
Updated over a week ago

If your products have vendor names, these vendor names can be shown in product recommendations boxes with minimal effort.

This article required some basic knowledge of CSS.

  1. Navigate to the box designer settings by going to Personalization > Website and click on the Designer button.

  2. In the Designer, click the code icon (<>) at the top right.

  3. In the CSS editor, add this line of code: 

.ls-vendor {  
     display: block;
}

   4. Click Save and Publish in order to activate the changes live on your store.

If you want to put the vendor name above the product title, you will have to add these few lines of CSS in the CSS editor:

.ls-vendor {
order: 1;
}

.ls-title {
order: 2;
}

.ls-price-wrap {
order: 3;
}
Did this answer your question?