The following examples are from a 13.5" laptop screen. Upon resize, the details in product card scale properly with exception of the quantity selector & add to cart.
Examples - 125%:
150%:
The following examples are from a 13.5" laptop screen. Upon resize, the details in product card scale properly with exception of the quantity selector & add to cart.
Examples - 125%:
150%:
We will look into it.
The fix is easy though - in the below template, change grid-lg-3 to grid-xl-3 until we have an update ready.
Thank you for the quick response, Nicolai.
We tried the suggested workaround, but it didn't work. We are using components on this page (product list item product repeater) - is there a different workaround for this?
Hi Lora
In Swift_ProductListItemRepeater.cshtml template, around line 129, change the colum code to the below:
string gridColumnSize = Model.Item.GetRawValueString("GridLayoutDesktop", "3-columns"); gridColumnSize = gridColumnSize == "2-columns" ? "g-col-xl-6" : gridColumnSize; gridColumnSize = gridColumnSize == "3-columns" ? "g-col-lg-6 g-col-xl-4" : gridColumnSize; gridColumnSize = gridColumnSize == "4-columns" ? "g-col-lg-4 g-col-xl-3" : gridColumnSize; gridColumnSize = gridColumnSize == "6-columns" ? "g-col-lg-3 g-col-xl-2" : gridColumnSize; gridColumnSize = gridColumnSize == "list" ? "" : gridColumnSize;
You must be logged in to post in the forum