Hi,
I'm at a bit of a loss for what to do. I've installed Shadowbox in Joomla, but the "My Image" test link just opens the image in a new regular window with no effect. Page where the link is (at the top of the article):
http://webfa.neon.studiocoast.com.au/index.php?option=com_content&view=category&layout=blog&id=47&Itemid=64
I've got a template installed that uses JS (jquery and yui), so have tried all the js options in case it was a conflict. I've put the refs into the template's php file so the code looks like below. They are pointing to the right places in the tree as far as I can tell. Any help would be much appreciated as I'm pulling my hair out here!
cheers, Kurt.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" >
<head>
<jdoc:include type="head" />
<link rel="stylesheet" href="<?php echo $path ?>/css/constant.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $path ?>/css/template.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $path ?>/../../modules/mod_ninja_shadowbox/ninja_shadowbox/css/shadowbox.css" type="text/css" />
<!--[if IE 6]>
<script type="text/javascript" src="<?php echo $path ?>/scripts/ie_png.js"></script>
<script type="text/javascript">
ie_png.fix('.png'

;
</script>
<![endif]-->
<!--cufon-->
<script type="text/javascript" src="<?php echo $path ?>/scripts/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="<?php echo $path ?>/scripts/cufon-yui.js"></script>
<script type="text/javascript" src="<?php echo $path ?>/scripts/Swis721_BlkCn_BT_400.font.js"></script>
<script type="text/javascript" src="<?php echo $path ?>/scripts/cufon-replace.js"></script>
<!--end cufon-->
<script type="text/javascript" src="<?php echo $path ?>/../../modules/mod_ninja_shadowbox/ninja_shadowbox/js/shadowbox.js"></script>
<script type="text/javascript">
Shadowbox.init();
</script>
</head>