tags:

views:

495

answers:

2

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!

A: 

Try slipping something like this into your jquery:

$("#fancy_outer").css({"float":"right","position":"static"});
graphicdivine
A: 

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

pixeltocode