CSS Question

Hi,

I have an embedded IFrame in a Form, and I want to be able to pass variables from my main Form into the Form embedded into my IFrame. So far so good.

The problem is I need to hide my IFrame from view, but the options i’ve tried not only hide it but also make it inaccessible.

For example, i’ve used “visibility: hidden” in my stylesheet, and i’ve also tried using “Hide-when” formula on the main Form, but of course this just removes the IFrame altogether.

Can anyone tell me a way I can hide my IFrame whilst still making it accessible to write values to?

Subject: CSS Question

You can set the height of the IFrame to zero, effectively hiding it.

Subject: RE: CSS Question

Thanks Eric!

I knew I could change the width, but that left me with a big gap where the Form should be.

Setting the height to zero is perfect - cheers!