How do I modify the positioning of the fancybox box? I want it to be positioned so that it floats right within my container div...
Thanks for all your time and help!
How do I modify the positioning of the fancybox box? I want it to be positioned so that it floats right within my container div...
Thanks for all your time and help!
Try slipping something like this into your jquery:
$("#fancy_outer").css({"float":"right","position":"static"});
line 255 of jquery.fancybox-1.2.6 has this bit of code
var itemOpts = {
'left': itemLeft,
'top': itemTop,
'width': width + 'px',
'height': height + 'px'
};
change the 'left' value to move the fancy box left or right