Reputation: 13335
How do I get rid of the vertical scroll bar in the iframe? See here:
The code is:
<iframe width="560" height="350" frameborder="0" scrolling="no" src="http://zleek.com/champ1979/navarathri-2009?embed=true&page=0"></iframe>
Upvotes: 0
Views: 4580
Reputation: 107536
It's not quite perfect, but you could add an overflow: hidden
to the Silverlight container in your iframe:
<div id="silverlightControlHost" style="overflow: hidden">
Upvotes: 2