0

I'm using gigya service for video embed...

If some one paste the following code in his wordpress page or post then horizontal and vertical scrollbar is displaying only in IE browsers....Working fine in Firefox and Chrome..

Here is the code:-

[gigya src="http://s.asstatic.com/player.swf" width="425" height="354" allowFullScreen="true" wmode="transparent" flashvars="file=fb=0&nb=1&ap=0&pl=as&c=#dfdfdf&p=1615781_634907097231053940"]

Please help me what should i put in the above code to remove the scrollbar displaying in IE only...

and here is the links.. please open it in IE8 or IE7...

http://gauravishere.wordpress.com/2012/12/27/test/

Thanks...

Gaurav
  • 341
  • 4
  • 18
  • What exactly is your question here? – SnareChops Dec 27 '12 at 07:05
  • please check the above link in IE and Firefox... found my question...:) I need to remove the scrollbar in IE when i paste the Gigya embed code in wordpress page or post.... – Gaurav Dec 27 '12 at 07:11
  • Have you found the answer to your question? If so, please create an answer below and mark as answer so that others in the future with the same question may find their answer more easily. Thank you. – SnareChops Dec 27 '12 at 08:07
  • 'position:absolute' works for me...Lets see.. this the right option or not... – Gaurav Dec 27 '12 at 08:18
  • If that answered your question then please post it as an answer below and mark as answer. – SnareChops Dec 27 '12 at 08:24

2 Answers2

1

position:absolute' works for me...

[gigya src="..." style="position:absolute" width="425" height="354" allowFullScreen="true" wmode="transparent" flashvars="file=fb=0&nb=1&ap=0&pl=as&c=#dfdfdf&p=99..."]
Gaurav
  • 341
  • 4
  • 18
-1

try to fix this type of issue by:

  1. Use html5 doctype if possible:

  2. Set 100% on all parent containers:

    *, html, body { height: 100%; width:100%; margin:0; padding:0; }

Rahul
  • 395
  • 1
  • 15