IFrame Component

0
hey there   I would like to change the color and border of the iframe, where I can do that.   thanks
asked
2 answers
0

Assuming you are using the marketplace module ‘Iframe’, and added the widget ‘Iframe component’ to a page, then in the widget’s properties go to tab Appearance, in attribute ‘Class’ add a classname, say ‘iframewidget’. Then go to ‘App’ → Styling → web → main.scss and add

.iframewidget{
  border: 1em solid red;
}

 

answered
0

You can use add a class or style in the Appearance 

 

iframe {
  border: 1em solid red;
}

 

answered