How can I remove the iFrame widget border in Slate?

393 Views Asked by At

I have an IFrame widget in Slate, and it has a gray border around it as in the screenshot below. I want to embed the IFrame in my app, but I need the format to fit more seamlessly into the rest of the app. I have tried looking in the styles tab without success. Is it possible to remove this border?IFrame with example

1

There are 1 best solutions below

0
Max Magid On BEST ANSWER

The border can be removed using CSS:

iframe {
   border: none; 
}

Just paste this code snippet into the Custom Styles field in the widget settings. Show where to enter code