Is that design a single CSS Grid where the image on the left and the text and shopping elements on the right are spanning multiple columns and rows? Or is it an image, a 2 col grid and a DIV Block inside a single FlexBox?
HI @PatLong how I see it you have some basic done. If I can add some my thoughts how I will create structure for this design. You can create everything with Flex only or with combination of Grid and flex. One approach can be …
section container - block
section wrapper - grid repeat(3, 1fr)
div_1 - block (main image) (cover)
Image
div_2 - block
Collection - flex wrap / minmax
collection item
div_3 - flex
card items
Keep in mind that this is only basic structure and you will need to set grid eg. tablet 2fr and mobile 1fr etc
HI @PatLong Sorry for strict description as I didn’t had much time. Yes in code “repeat(3, 1fr)” is identical set Grid 3 col by clicking in WF to create 3 cols. These cols will have identical width but you can set their width by value of any relative unit that will suite you.
When you set Flex wrap you can set with minmax that image in your set of images take eg. 50% of one row this mean that there will be 2 images per row and rest will wrap under and so on.
Hi @PatLong yes they do as images are I presume identical W/H (I can’t check dimensions in collection). By explicit instruction 50% you can prevent any problems if client would not pay attention to images optimisation etc. But it is up to you how you will set it up, I have only mentioned as I will thing about structure and settings.