Read the statement by Michael Teeuw here.
MMM-iframes
-
This is exactly what I was looking for to cycle through weather radar GIFs and images from the NWS.
Any idea how to hide scrollbars that show up in the iFrame?
-
@richRiggins
Did you figure that out about the scroll bars? I have one that has the same issue that I have not been able to figure out how to get rid of… -
@plainbroke the stuff in the iframe is because of the page size it was rendered for.
So to remove the scroll bars you have to change the page size,
Some attribute on the request. BUT the page will be different too -
@sdetweil
Ok, I get it now… I just need to go in and resize that logo.png file I am using and it should get rid of the slide, Correct… -
@plainbroke yes, or you can try this in your custom. css
.modulename iframe { overflow:hidden; }
that should clip off the content at the iframe size
a deprecated attribute that ‘may’ still work,
set scroll=“no” on the iframe statement itself. (but you would have to change the code for this)