Layout Grid confusion

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
User avatar
jPaul
 
 
Posts: 22
Joined: Thu Jun 10, 2021 11:00 am

Layout Grid confusion

Post by jPaul »

Hi Everybody,

I have a Layout Grid, arranged in two equal columns. Each column contains three Editboxes.

In the default view, the display is like this:
Image

However, in the breakpoint view, the display is like this:
Image

The issue I have is that the positional order of the Editboxes is quite different in the breakpoint view. I expect that will make user entry difficult.

I would like to adjust that, so that the order is the same in both views. Can someone explain how, orpoint me to a tutorial to know "how".
Many Thanks,
-Paul-
User avatar
Pablo
 
Posts: 22125
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Layout Grid confusion

Post by Pablo »

You can set the breakpoint in the properties of the layout grid.

If you need further assistance then please provide a DEMO project, so I can see what you are doing.
User avatar
BaconFries
 
 
Posts: 5531
Joined: Thu Aug 16, 2007 7:32 pm

Re: Layout Grid confusion

Post by BaconFries »

When sharing images from Dropbox you need to provide the correct url for it to display. The link you gave was using dl=0 where it should be raw=1 I have modified the url for you so that the image displays.
User avatar
crispy68
 
 
Posts: 2831
Joined: Thu Oct 23, 2014 12:43 am
Location: Acworth, GA
Contact:

Re: Layout Grid confusion

Post by crispy68 »

The way you have the grid setup is the way it works. At the breakpoint, column 2 is going to fall underneath column 1. There is no way to make objects in column 2 intertwine with objects in column 1 when the breakpoint is reached as these are separate containers/areas/columns.

The way you currently have it, you will need to order it like such:

your first name |your email address
your last name | your password
your User name | verify your password

so when the breakpoint is reached it will be:

your first name
your last name
your User name
your email address
your password
verify your password

The only other idea I can think of (but i have not yet tested) is trying to use a flexbox container where each object is 50% width and then set the flexbox container to column in a breakpoint to cause it to stack.
alan_sh
 
 
Posts: 1714
Joined: Tue Jan 01, 2019 5:50 pm

Re: Layout Grid confusion

Post by alan_sh »

You could use a flex grid with one editbox per cell. Then in the other breakpoint, you can re-order them however you want.

Alan
bkjohns
 
 
Posts: 293
Joined: Wed Nov 14, 2018 5:54 pm

Re: Layout Grid confusion

Post by bkjohns »

I would just reorder the editboxes, ie the left column being the personal info (fname, lname, email) and the right column being the username, password and verification. Then you don't have to worry about the order when reaching a breakpoint.
User avatar
crispy68
 
 
Posts: 2831
Joined: Thu Oct 23, 2014 12:43 am
Location: Acworth, GA
Contact:

Re: Layout Grid confusion

Post by crispy68 »

As I stated before and bkjohns said, changing the order as you have it would be the easiest solution to do.

However, if you absolutely had to keep it the way you have, I can confirm using a flexbox container will work.

Set the flex container properties to row, wrap, center, center, center.

Insert each editbox into the container and then for each editbox you would set the Flex Basis property to 48% (I set a little below 50% to allow for some spacing).

Then at whatever breakpoint you want it to stack, keep the same flex container settings as before but set the Flex Basis property of each editbox to 100%.
Post Reply