Hop this helps:
Page Settings - put in header tags section
<link type="text/css" media="screen" rel="stylesheet" href="/Resources/Shared/colorbox/colorbox.css" />
<!--[if IE 6]>
<link type="text/css" media="screen" rel="stylesheet" href="/Resources/Shared/colorbox/colorbox-ie6.css"/>
<![endif]-->
I just put ie6 as a seperate css file you can remove that statement if you want.
Module Settings - put in header
For Single Photo
<script type="text/javascript" src="/Resources/Shared/colorbox/jquery.colorbox-min.js" ></script>
<script type="text/javascript">
$(document).ready(function(){
$(".photo").colorbox({overlayClose:false, photo:true});
});
</script>
For Grouped Photos
<script type="text/javascript" src="/Resources/Shared/colorbox/jquery.colorbox-min.js" ></script>
<script type="text/javascript">
$(document).ready(function(){
$("a[rel='photos']").colorbox({current:'Photo {current} of {total}', overlayClose:false, slideshow:true,
slideshowSpeed:4000, slideshowAuto:false, photo:true});
});
</script>
I think the key here is photo:true and ofcourse in the html editor you will need to put the specific class or rel attribute.
Best regards,
Wasim