I already have a conflict
Code:
<link rel="stylesheet" type="text/css" href="../Renovate/scripts/mmenu.css">
and
Code:
<link rel="stylesheet" href="../scripts/Lightbox/css/lightbox.css" type="text/css" media="screen" />
How does one do a workaround? The tutorial suggests merging css docs but that sounds like a long winded approach.
If the lightbox refs are before the omni menu, the menu does not work and if the lightbox refs are after the omnimenu, the lightbox script does not work. I just noticed the slideshow also is affected - Just my luck 
I tried changing to rel1=... but it seems "rel" is a relevant syntax no pun intended.
Any quick work-arounds?
I have declared the full reference to lightbox like this
Code:
<script type="text/javascript">
//script for lightbox</script>
<link rel="stylesheet" href="../scripts/Lightbox/css/lightbox.css" type="text/css" media="screen" />
<script src="../scripts/Lightbox/js/prototype.js" ></script>
<script src="../scripts/Lightbox/js/scriptaculous.js?load=effects,builder"</script>
<script src="../scripts/Lightbox/js/lightbox.js" ></script>
<style type="text/css">
body{ color: #333; font: 13px 'Lucida Grande', Verdana, sans-serif; }
</style>
From the demo, he had the references like this
Code:
<link rel="stylesheet" href="../scripts/Lightbox/css/lightbox.css" type="text/css" media="screen" />
<script src="../scripts/Lightbox/js/prototype.js" type="text/javascript"></script>
<script src="../scripts/Lightbox/js/scriptaculous.js?load=effects,builder" type="text/javascript"></script>
<script src="../scripts/Lightbox/js/lightbox.js" type="text/javascript"></script>
<style type="text/css">
body{ color: #333; font: 13px 'Lucida Grande', Verdana, sans-serif; }
</style>
And that does not work if pasted as is into my page. The way I have declared it, got the lightbox to work as my images are embedded in <td tags
I did all the markups on the css as suggested by the author for the image button links but I want to use this script in the future so I have assigned it a folder of lightbox as a sub folder of scripts.
The omnimenu stuff is in another folder called renovate/scripts
In the preview of FP editor, I get an error of
Line:188
Char:3
Error:'null' is null or is not an object
Not that that tells me much anyway 
I have only experimented with one image so I have not screwed up too much (yet)
Bookmarks