thought i'd make this bug http://drupal.org/node/701076#comment-4458980 its own issue

I'm having the same problem, its loading this div

div id="sm2-container" class="high_performance movieContainer swf_loaded"

which is pushing down the footer an extra 200px

Comments

emergencyofstate’s picture

Hi there. I expericned the same thing. Your answer is here --> http://getsatisfaction.com/schillmania/topics/big_empty_gap_at_bottom_of...

merro’s picture

sorry, i still couldn't work out a solution from the link you provided, it was saying to include flashblock.css
but wasn't sure where to add it..

ended up using:

#sm2-container {
display: none;
}

probably not the best solution, but it seems to work

merro’s picture

scratch that, breaks the player when you click play, tries to load in new window as normal mp3

Could you give some instruction on how you went about it

thanks

RachelIsland’s picture

I'm having the same problem, and my client can't wait for me to fix it! hahaha! Hope there's a new release of the module with that issue fixed...

RachelIsland’s picture

Hi!

There seems to be a solution at http://www.schillmania.com/projects/soundmanager2/demo/flashblock/index....

I don't understand where does the flashblock.css file need to be placed?

http://www.schillmania.com/projects/soundmanager2/demo/flashblock/flashb...

It is already in librairies/soundmanager2/demo/flashblock/flashblock.css in the 7.x-2.x-dev version, but it doesn't work for me...

emergencyofstate’s picture

I put the flashblock.css file in my theme's css directory. Then you need to reference it in your theme's .info file:

stylesheets[all][] = css/flashblock.css

That should do it.

merro’s picture

Thanks, that was the answer i was looking for!

What i actually did, was add the flashblock.css via css injector http://drupal.org/project/css_injector
so there no chance of it being overwritten by a theme update

thanks again

jddeli’s picture

And how do cut the 200px on the footer

andreas_jonsson’s picture

Suggested a fix for this here: http://drupal.org/node/701076#comment-5592024
Haven't had a look at flashblock yet.

swaroops1’s picture

Just put this in theme.css file the problem will be solved..

#sm2-container {
height: 0;
overflow: hidden;
visibility: hidden;
}

andyhawks’s picture

Status: Active » Needs review

The same patch in comment #10 was also applied for a different issue, #1427616: styles added in ui360 multiple times. Can someone test the patch in #4 and let me know if it passes this ticket as well?

andyhawks’s picture

Status: Needs review » Closed (fixed)

patch referenced in #11 applied in latest 7.x-2.x-dev

Sakrecoer’s picture

Hi all,

The patch seem to be integrated in the 7.x-2.0-alpha1 release from 2012-Aug-21. But the problem remains since flashblock.css is not put in header.

However, adding

#sm2-container {
height: 0;
overflow: hidden;
visibility: hidden;
}

to pretty much any css file loaded fix this.

Thanks for a delicious jobb guys!!
You made my life alot easier!