Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey there,

    I can report it, too. In my cases it had something to do with some rather harsh CSS reset done by my grid system. This one rule caused the calculation of the width of each picture with padding to ‘fail’:

    box-sizing: border-box;

    and accordingly for -webkit and -moz. Changing it explicitly for #fancybox-wrap and everything below to CSS2.1 standard, I got it working easily:

    #fancybox-wrap, #fancybox-wrap * {
    	-webkit-box-sizing: content-box;
    	-moz-box-sizing: content-box;
    	box-sizing: content-box;
    }

    May that be the case in your story as well ;)?

    Thanks! This worked for me.

    Cheers!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Close button and Border Offset, causes Fancbox to reposition’ is closed to new replies.