Auto Page Length

Questions related to the Responsive Web Design tools of WYSIWYG Web Builder.
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/respon ... esign.html
Please read this first before posting any questions! Also check out the example project to get an idea how the RWD concept works.

Responsive Web Design FAQ:
http://wysiwygwebbuilder.com/forum/view ... 10&t=63817
Post Reply
User avatar
dnlyko
 
 
Posts: 155
Joined: Tue Mar 05, 2019 12:55 pm
Location: Toronto - Canada

Auto Page Length

Post by dnlyko »

I am having an issue with page length. Some pages display longer than the actual content, some display correctly.
What setting(s) do I need in order for the page to display only the content and not a longer length ?

eg. 1 displays correctly
https://rockngroove.com/snaps/island-soul-2024.html

eg. 2 page length extends beyond content
https://rockngroove.com/snaps/dread-mar-i.html

I am wondering if perhaps some pages were created on earlier versions of WWB as apposed to later WWB versions ?
pmacdonald
 
 
Posts: 30
Joined: Wed Feb 23, 2022 7:03 pm

Re: Auto Page Length

Post by pmacdonald »

Hi,

It appears this particular object has a height of 7246px set on it somewhere.
If that were 100% instead, or not specified at all, I think you wouldn't have all that empty space at the bottom.

#wb_PhotoGallery1 {
left: 0px;
top: 200px;
width: 1024px;
height: 7246px;

Regards

Parker
User avatar
Pablo
 
Posts: 23399
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Auto Page Length

Post by Pablo »

This may be helpful "There is a large is empty space at the bottom or right side of my page"
https://wysiwygwebbuilder.com/forum/vie ... 10&t=63817
User avatar
BaconFries
 
 
Posts: 5933
Joined: Thu Aug 16, 2007 7:32 pm

Re: Auto Page Length

Post by BaconFries »

I am wondering if perhaps some pages were created on earlier versions of WWB as apposed to later WWB versions ?
Only you would know this as we have no way to know how you previously created them!. Looking at the source you have multiple items using #wb_PhotoGallery1 for different breakpoints or you have simply created each page with different widths..
Apart from what Parker as mentioned you have the following with a page height of 12342px

Code: Select all

wb_PhotoGallery1
{
   left: 0px;
   top: 320px;
   width: 320px;
   height: 12342px;
   visibility: visible;
   display: inline;
   margin: 0;
   color: #000000;
   border: 0px solid transparent;
User avatar
dnlyko
 
 
Posts: 155
Joined: Tue Mar 05, 2019 12:55 pm
Location: Toronto - Canada

Re: Auto Page Length

Post by dnlyko »

BaconFries wrote: Tue Apr 22, 2025 3:50 pm
I am wondering if perhaps some pages were created on earlier versions of WWB as apposed to later WWB versions ?
Only you would know this as we have no way to know how you previously created them!. Looking at the source you have multiple items using #wb_PhotoGallery1 for different breakpoints or you have simply created each page with different widths..
Apart from what Parker as mentioned you have the following with a page height of 12342px

Code: Select all

wb_PhotoGallery1
{
   left: 0px;
   top: 320px;
   width: 320px;
   height: 12342px;
   visibility: visible;
   display: inline;
   margin: 0;
   color: #000000;
   border: 0px solid transparent;
Correct, and the page height is set at 12,700 on the 320
User avatar
crispy68
 
 
Posts: 3037
Joined: Thu Oct 23, 2014 12:43 am
Location: Acworth, GA
Contact:

Re: Auto Page Length

Post by crispy68 »

The height of your photo gallery is too high causing the space. You need to reduce the height of it to remove the space below. The height of the page in the workspace is only for the workspace. It's the content on the page that determines the height of your overall page.

You will be much better served if you start using grids/flexgrid/etc. for design.
User avatar
dnlyko
 
 
Posts: 155
Joined: Tue Mar 05, 2019 12:55 pm
Location: Toronto - Canada

Re: Auto Page Length

Post by dnlyko »

Thanks for all your suggestions. Unfortunately, none solved my issue.
I did, however find the issue causing the extended page lengths.
For some reason the PhotoGallery object dimensions were not auto calculating for all BreakPoints.
The solution was to go into each BreakPoint and double-click in the PhotoGallery, then in the Properties box, click the OK button. This would set the proper dimensions for said BreakPoint.
Post Reply