Prabhu
Prabhu

Reputation: 13335

iframe vertical scrollbar

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&page=0"></iframe>

Upvotes: 0

Views: 4580

Answers (2)

Cᴏʀʏ
Cᴏʀʏ

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

fvu
fvu

Reputation: 32953

style="overflow:hidden" 

maybe?

Upvotes: 0

Related Questions