Hi, I have a bunch of updates to a site - changes from last year’s event to this year’s event - which aren’t yet set in stone. Is there a way to hide the entire strip while details are still up in the air? I don’t want to have to redesign it once I need it again. Thanks!
Click the strip, and at the property panel set the “Collapse on load”
In dev mode:
$w . onReady ( function () {
// Write your JavaScript here
$w ( “#columnStrip1” ). collapse ();
// To select an element by ID use: $w(“#elementID”)
// Click “Preview” to run your code
});