The PageBuilder Product List Component seems to be an almost ideal replacement for the EmporiumPlus Toolkit "bestseller" function. The Product Set can be "Assigned to Category" and the category can be "Determined by Page Items."
The main issues are:
The Heading Text
Matching the look & feel of the store thumbnail image size and a border around it. I "think" I can just add the border with CSS but I've tried
but no luck
The original look & feel has a
but the Component wants fixed Image Dimensions. Using the Image Fit "Scale Down" will probably be the closest I can get it.
Leslie
The main issues are:
The Heading Text
Code:
:host {
--mmx-text__inner--max-width: 28ch;
--mmx-text__text-align: left;
}
Code:
mmx-card::slotted(img){border: solid 0.0625rem #dbe3e5;)
Code:
mmx-card::part(image){border: solid 0.0625rem #dbe3e5;)
The original look & feel has a
Code:
max-height: 8.125rem;
Leslie