Hi,
I’ve just added an iframe on my site, but there is a border/margin around it.
Is there any way I can remove this?
Thanks
John
(EDIT – Found a temporary fix by putting into a grid row)
In case someone has a similar issue, try re-setting the border in thee iframe style tag:
<iframe style='border: 0' src=''></iframe>
Thanks Josue – where would that code go? Just in the code box which contains the original iframe?
My code at the moment is
<iframe src="site" width="100%" height="800">Browser not compatible.</iframe>
Correct, like:
<iframe src="site" width="100%" height="800" style="border: 0">Browser not compatible.</iframe>