Having issues with mulitple wick projects on the same webpage

(Version 1.19 desktop editor, though I’ve had the same problem with the more recent online one as well)

So… I’ve tried exporting a few HTML files so I can add 'em to my Neocities website. HOWEVER, I’ve discovered it’s just plain impossible (with my knowledge thus far, anyway) to embed multiple projects into the same page via iframes. Is this a problem with the wick editor itself, or is it a case of user error?

My goal is to make an advent calendar for my site, and I wanted 2 or 3 days to have interactive scenes, so I’m hoping to be able to compile them all in the same page, but if that’s not possible, is there any better method I could use? :P

I just took a peek on stack overflow, and it looks like it should be possible.

<iframe id="AlertMaintenance" style="border-style: none; border-color: inherit; border-width: 0px; height:1222px; width:100%;" src="AlertMaintenance.html"></iframe>

<iframe id="DelayReason" style="border-style: none; border-color: inherit; border-width: 0px; height:1222px; width:100%;" src="DelayReason.html"></iframe>

See if you can upload 2 html files, fix up the id and src, and adjust the styles to what you need.

It’s possible in a page by itself, but I get error message after error message on the console when I try to set the display of an iframe to “none”, which is part of what I need the advent calendar to do…

EDIT: Whoops, apparently display:none has issues with iframes when using firefox… which is the browser I’m using. Instead I’m editing the visibility settings, which has solved the issue!