Back to Tweaks Main | Buy Now [$95] | Lightshow Magic Home | Main Examples Page

 

Lightshow Magic: Minimal

The page is not dimmed and all animation is turned off. Thumbnail rollovers are disabled and the thumbnails are hidden.

We then use the LSM Behaviors to add a link to the TOC:

Launch Table of Contents

  • Green Sea Turtle
  • Humpback Whale
  • Oryx Antelope
  • Toco Toucan
 

CSS tweaks

#p7lsm_overlay.p7LSM02 {
opacity: 0;
filter: alpha(opacity=0);
background-color: #151515;
}
.p7LSM02 .p7LSM_trigs {
display: none;
}
#p7LSM_tocbox.p7LSM02 {
top: 100px !important;
}

Notes:

A small tweak is necessary to the script file.

1. Open the p7LSMscripts.js file and locate this code block at around line 657:

ea.onclick=function(){
cDB=document.getElementById(p7LSMcshow[0]);
P7_LSMshow(cDB.p7slides[this.p7num]);
return false;
};

2. Replace the second and third lines with this single line:

P7_LSMctrl(this.p7num+1,sd);

So that it now looks like this:

ea.onclick=function(){
P7_LSMctrl(this.p7num+1,sd);
return false;
};

3. Save the script file.