views:

616

answers:

2

How do I get rid of the vertical scroll bar in the iframe? See here:

http://lambodhara.tumblr.com/

The code is:

<iframe width="560" height="350" frameborder="0" scrolling="no" src="http://zleek.com/champ1979/navarathri-2009?embed=true&amp;page=0"&gt;&lt;/iframe&gt;
A: 
style="overflow:hidden"

maybe?

fvu
A: 

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">
Cory Larson