in editor preview, collapsing left side / previous column does makes the right side / next column goes to the left, but in live site it’s not, is it a bug ?
Any screenshots of your example?
Post your code that you have used here so that we can check for errors.
Not exactly sure what you are trying to do, so…
Check this Wix tutorial for more info if needed.
https://www.wix.com/corvid/example/collapse-elements
Also, check out Nayeli (Code Queen) youtube video about adding double collapse to your page.
https://www.youtube.com/watch?v=HmTkf5af0NE
Plus, make sure that you have used collapsed and expand properly.
https://www.wix.com/corvid/reference/$w.CollapsedMixin.html
I believe you are having the same problem reported in this link below.
The Wix team is already checking this out.
Although that is only good if the forum poster can read Portuguese.
not complicated at all, just expand and collapse
export function showFilterButtonElt_click(event) {
$w(‘#filtersColumnElt’).expand();
$w(‘#showFilterButtonElt’).collapse();
}
export function hideFilterButtonElt_click(event) {
$w(“#filtersColumnElt”).collapse();
$w(‘#showFilterButtonElt’).expand();
}
i create a store page, left column / 1st column is contains elements for filtering products repeater which is on the right side / 2nd column
not a big problem, i can just disable the “Hide Filter” functionality from the page.
just curious why it works well in editor but not in live site
@marciokricheldorf just noticed that you’re the poster for that question, a kind of same but not exactly same, you want to expand the column’s width wile i just need to move, if it can move + expand the size this would be great though, do your preview different between in editor and in live site ?
I could really use a fix for this myself. Just ran into a need for it today, as solution for another Wix issue – lol.