fancybox dynamic resizing

All WYSIWYG Web Builder support issues that are not covered in the forums below.
Forum rules
IMPORTANT NOTE!!

DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.



PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Post Reply
will.m
 
 
Posts: 5
Joined: Thu Feb 06, 2025 12:31 am

fancybox dynamic resizing

Post by will.m »

Hello, what would be the easiest way to change the width and height of the fancybox-content and fancybox-wrap div tags in a lightbox? What I have is a fancybox that is used to login but offers a link to register the user if they have not already done so. The registration is wider and taller than the login and needs to replace the login form, so how would one go about dynamically resizing these divs so that scrollbars are not displayed with the registration? Thanks in advance.
User avatar
Pablo
 
Posts: 23239
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: fancybox dynamic resizing

Post by Pablo »

Did you try the suggestion from the help?

Code: Select all

width: 350,
height: 250,
Note that each lightbox script has its own set of options. So, this only works for FancyBox
User avatar
BaconFries
 
 
Posts: 5874
Joined: Thu Aug 16, 2007 7:32 pm

Re: fancybox dynamic resizing

Post by BaconFries »

Lightbox-->Fancybox-->Settings Add the size you wish
Example:

Code: Select all

width : 500,
height : 500
Also see the following:
http://fancybox.net/api
will.m
 
 
Posts: 5
Joined: Thu Feb 06, 2025 12:31 am

Re: fancybox dynamic resizing

Post by will.m »

Yes, thanks Pablo, I needed to state that first. The login form is sized properly using the width and height settings - no problem there. But the problem is that the same settings change (with different dimensions) doesn't seem to work within the lightbox. So maybe I need to close the current lightbox before trying to open a new one in its place?

I should also mention that I have used Inspect to alter the fancybox-wrap and fancybox-content width and height attributes to achieve what I am looking to do here.
will.m
 
 
Posts: 5
Joined: Thu Feb 06, 2025 12:31 am

Re: fancybox dynamic resizing

Post by will.m »

EUREKA - I think I found a bug/enhancement in the displaylightbox function. Notice the "parent." prefix.

Code: Select all

function displaylightbox(url, options)
{
   options.padding = 0;
   options.autoScale = true;
   options.href = url;
   options.type = 'iframe';
   parent.$.fancybox(options);
}
User avatar
Pablo
 
Posts: 23239
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: fancybox dynamic resizing

Post by Pablo »

Why do you need the "parent." prefix?
It has always work without this code.
will.m
 
 
Posts: 5
Joined: Thu Feb 06, 2025 12:31 am

Re: fancybox dynamic resizing

Post by will.m »

Maybe I haven't been clear, apologies. Try popping up a page in a lightbox and then, through a button on that same page, popping up a larger page within that lightbox.
User avatar
Pablo
 
Posts: 23239
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: fancybox dynamic resizing

Post by Pablo »

I don't think this is possible. You can only set the initial size.
will.m
 
 
Posts: 5
Joined: Thu Feb 06, 2025 12:31 am

Re: fancybox dynamic resizing

Post by will.m »

It does work when I prepend the parent. Works exactly as I wanted.
User avatar
Pablo
 
Posts: 23239
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: fancybox dynamic resizing

Post by Pablo »

I'm sorry, I am not familiar with this prefix.
Post Reply