Hi,
As I was trying to explain...the problem with SCORM is 50% to do with the package itself and 50% to do with the the layout file used in Pop-Up.
If you look in the Elegance/config.php you will find these lines of code...
// Pages that appear in pop-up windows - no navigation, no blocks, no header.
'popup' => array(
'file' => 'default.php',
'regions' => array(),
'options' => array('nofooter'=>true, 'nonavbar'=>false),
),
You need to change the highlighted line to...
file => 'embedded.php',
so that it reads like this...
// Pages that appear in pop-up windows - no navigation, no blocks, no header.
'popup' => array(
'file' => 'embedded.php',
'regions' => array(),
'options' => array('nofooter'=>true, 'nonavbar'=>false),
),
This should fix SCORM with regards to the layout problem.
The general problem with the layout is hard to define but is a combination of layout CSS and also the fact that Elegance is a 'Work in Progress' and as such can be a little unpredictable. Hence the layout.
Yes there is a problem with the CSS, that is obvious, but then there is a problem in Moodle with layout issues too, so it could be a combination of Theme and Moodle Javascript.
A solution is not easy without trying to replicate the issue. Currently I am not using Elegance but I will test it this evening now that you have highlighted this problem.
Cheers
Mary