nextgen-gallery .92 header hack
-
Alex. I am trying to hack a slideshow into a header, I found where to change the background color for page reloads as illustrated in the following snip
var so1913 = new SWFObject(“https://homeonorcas.com/wp-content/plugins/nextgen-gallery/imagerotator.swf”, “ngg_slideshow1”, “980”, “200”, “7”, “#053e73”);What I would like to do is declare an image as the loading background. so when pages are called and the header is reloaded the change isn’t so noticeable.
You can see the base of what I am doing here.
I have a base image that has the textured background and the text that I would like as the placemat.
Any suggestions.
For others that don’t use your plugin, the entire header code is below.
<script type=”text/javascript” defer=”defer”>
var so1913 = new SWFObject(“https://homeonorcas.com/wp-content/plugins/nextgen-gallery/imagerotator.swf”, “ngg_slideshow1”, “980”, “200”, “7”, “#053e73”);
so1913.addParam(“wmode”, “opaque”);
so1913.addVariable(“file”, “https://homeonorcas.com/wp-content/plugins/nextgen-gallery/nggextractXML.php?gid=1”);
so1913.addVariable(“shownavigation”, “false”);
so1913.addVariable(“showicons”, “false”);
so1913.addVariable(“linkfromdisplay”, “true”);
so1913.addVariable(“overstretch”, “false”);
so1913.addVariable(“backcolor”, “0x053e73”);
so1913.addVariable(“frontcolor”, “0xFFFFFF”);
so1913.addVariable(“lightcolor”, “0xCC0000”);
so1913.addVariable(“screencolor”, “0x053e73”);
so1913.addVariable(“rotatetime”, “5”);
so1913.addVariable(“transition”, “slowfade”);
so1913.addVariable(“width”, “980”);
so1913.addVariable(“height”, “200”);
so1913.write(“ngg_slideshow1”);
</script>
- The topic ‘nextgen-gallery .92 header hack’ is closed to new replies.