Go to the section:
Show only a part of the iframe or modify it ->
See:
Content id in iframe
Content styles in iframe
In the first setting you define the element you want to change and in the 2nd the style.
so in your case you can do this in the administration of when you want to set it ass shortcode attribute:
iframe_content_id = “.otw-row”
iframe_content_styles = “background-color: #fff;”
Best, Michel
Thank’s to you michel for your answer,
It’s crazy but what you told me is what i tried… and it’s not working…
In fact, i use the show only attribute to show only the otw-row class but before otw-row there is
html.js and this last one present a margin top and a background-color that I would like to remove.
When i use the “Content id in iframe” and “Content styles” shortcodes, the frame display every class back and not only otw-row and styles are not applied.
I’m sorry, it’s a very strange problem… do you have any idea?
thank’s for your answer
Ok i found a way to change a background problem but One Problem persist,
If somebody knows how to remove the html.js margin-top of the iframe it would be so great!
I think this margin isn’t removable because it’s the website main margin but i want to remove only the iframe margin and not the real website main top-margin :/
Thank’s for your help!
Anatole
Ok once again thank’s ^^
I found how to “remove” this margin-top. In fact it’s not removing but compensate the margin.
If somebody have got the same problem you should in your css file add this lines
iframe
{
margin: -50px;
}
note: and replace 50px by the value you need.