Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bbatt/11065723 to your computer and use it in GitHub Desktop.
Save bbatt/11065723 to your computer and use it in GitHub Desktop.
In the presentation.html file, look for this:
if (g_bScrollbars)
{
document.write("<table border=0 cellpadding=0 cellspacing=0 width='100%' height='100%' align=center>");
document.write("<tr>");
document.write("<td align=center>");
}
And change it to this:
if (g_bScrollbars)
{
document.write("<table border=0 cellpadding=0 cellspacing=0 width='100%' height='100%' align=left>");
document.write("<tr>");
document.write("<td align=left style=vertical-align:top>");
}
For the HTML5 version of the content, edit the mobile\player.css file. Look for this:
.framewrap
{
background:#ccc;
background: #fff;
position:absolute;
border-radius:10px;
border:solid 1px #000;
}
Replace it with this:
.framewrap
{
background:#ccc;
background: #fff;
position:absolute;
border-radius:10px;
border:solid 1px #000;
top:0px!important;
left:0px!important;
}
Notice: There's no guarantee that this will work as expected in your environment. It's just a best guess. And as always, Articulate does not support this modification.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment