just a weird thought is possible to use the same intergration of colorbox on a maxigallery am trying figure out but if anyone of you just let us know
from the colorbox we have this but i don’t know where it goes on modx
<style type="text/css">
body{font:12px/1.5 Verdana, Arial, san-serrif;}
a:link, a:visited{text-decoration:none; color:#416CE5; border-bottom:1px solid #416CE5;}
h2{font-size:13px;}
.hidden{display:none;}
</style>
<link type="text/css" media="screen" rel="stylesheet" href="colorbox.css" />
<!--[if IE]>
<link type="text/css" media="screen" rel="stylesheet" href="colorbox-ie.css" title="example" />
<![endif]-->
<script type="text/javascript" src="
http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="../colorbox/jquery.colorbox.js"></script>
<script type="text/javascript">
$(document).ready(function(){
//Examples of how to assign the ColorBox event to elements
$("a[rel=’example1’]").colorbox();
$("a[rel=’example2’]").colorbox({transition:"fade"});
$("a[rel=’example3’]").colorbox({transition:"none", width:"75%", height:"75%"});
$("a[rel=’example4’]").colorbox({slideshow:true});
$(".single").colorbox({}, function(){
alert(’Howdy, this is an example callback.’);
});
$(".colorbox").colorbox();
$(".youtube").colorbox({iframe:true, width:650, height:550});
$(".iframe").colorbox({width:"80%", height:"80%", iframe:true});
$(".inline").colorbox({width:"50%", inline:true, href:"#inline_example1"});
//Example of preserving a JavaScript event for inline calls.
$("#click").click(function(){
$(’#click’).css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
return false;
});
});
</script>