All Collections
1:1 Product Recommendations
Setup and Configuration
How to Add Vendor Names on the Product Recommendations
How to Add Vendor Names on the Product Recommendations

If your products have vendor names, you can add them on our product recommendations with CSS.

Gillian avatar
Written by Gillian
Updated over a week ago
  1. Navigate to the box designer settings by going to your LimeSpot Admin Panel > Converion > Website Personalization and click on the black Designer button.

  2. Click on Global Settings > Code > Edit Code.

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

.ls-vendor {  
     display: block;
}

   4. Exit the editor and "Save" and "Publish" in order to push 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?