I am new to Wix Editor and to web design in general, so I might have started wrong, because my website is not really responsive. Now I’m trying to make adjustments using strips and columns to group elements, and also using breakpoints.
I assume it would be helpful to use some code, because Wix Editor is kind of limiting, but the syntax is confusing me a little.
My main question is: how to make a group of elements (like one horizontal menu, text, image) adjusting its dimensions according to the strip column I put it into? Or at least, how to make any single element resize according to the column (break point, respectively)? With images it only works if I set them as the column background.
I considered using fitMode and formFactor…?
const currentFormFactor = formFactor;
if (currentFormFactor === 'Desktop') {
//
} else if (currentFormFactor === 'Tablet') {
//
} else if (currentFormFactor === 'Mobile') {
//
}