Drop shadow outside the custom player

Apr 15, 2016

Hi,

We have developed a storyline course with custom menu/player. The client now suggest to have a drop shadow on the player itself. Any suggestions please?

3 Replies
Simon Smith

On the outside of the player? If you're using HTML5 you can add the CSS3 properties for box-shadow onto the framewrap element.

<div class="framewrap" style="
-webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);">

Using the flash player you will need to add the following to the style info at the top of the page, just underneath the <title>.

#divSwf {-webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);}

Obviously you can use your own box-shadow info, I just grabbed that from the super-handy box-shadow generator.

Hope this helps!

 

This discussion is closed. You can start a new discussion or contact Articulate Support.