Box shadow on form within Pages

Is it possible to remove the box shadow around the form when using pages? When I embed into a webpage I get no shadow however using plumsail pages I do.

Any assistance on this would be appreciated,

Thnaks,

Hello @Alex_Stephen,

Are you talking about Sharing pages and the shadow around the container?
image

If so, you can add this CSS in your form, to CSS editor to hide the shadow around the form container.

.form-container {
    box-shadow: none !important;
}

image

1 Like

Thanks @mnikitina :grin: - all understood.

1 Like