Whenever I insert a layout grid with 2 or more columns, it's normal on desktop, but the columns always stack up vertically on a mobile breakpoint.
Is there a way to have the columns in a layout grid side by side even in a mobile breakpoint?
How do I have layout grid columns side by side in mobile breakpoint?
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
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
-
-
- Posts: 101
- Joined: Sat Dec 28, 2019 6:59 pm
- Pablo
- Posts: 23645
- Joined: Sun Mar 28, 2004 12:00 pm
- Location: Europe
- Contact:
Re: How do I have layout grid columns side by side in mobile breakpoint?
You can control this via the 'breakpoint' property of the grid. For example, if you set this to 0, then it will never switch to rows.
-
-
- Posts: 101
- Joined: Sat Dec 28, 2019 6:59 pm
Re: How do I have layout grid columns side by side in mobile breakpoint?
Thanks! Which property should I be looking at within the breakpoint?
- Pablo
- Posts: 23645
- Joined: Sun Mar 28, 2004 12:00 pm
- Location: Europe
- Contact:
Re: How do I have layout grid columns side by side in mobile breakpoint?
The name of the Layout Grid property is 'Breakpoint'
-
-
- Posts: 101
- Joined: Sat Dec 28, 2019 6:59 pm
Re: How do I have layout grid columns side by side in mobile breakpoint?
Hmm....it still doesn't look the way I want it to look, in fact when i change to mobile view, it's all jumbled up and not neatly side by side.
- Pablo
- Posts: 23645
- Joined: Sun Mar 28, 2004 12:00 pm
- Location: Europe
- Contact:
Re: How do I have layout grid columns side by side in mobile breakpoint?
Maybe you have added fixed content to the grid?
It is difficult help you without seeing what you have done.
It is difficult help you without seeing what you have done.
-
-
- Posts: 101
- Joined: Sat Dec 28, 2019 6:59 pm
Re: How do I have layout grid columns side by side in mobile breakpoint?
here's the link to the working file:
https://docs.google.com/document/d/1H5K ... ue&sd=true
I'm just trying to have a basic web company title at the top left, with the menu on the right. It works ok on desktop.
But I also want the responsive menu to be in the same top right position when in mobile view. Instead, it's all jumbled up below the company title in mobile view.
Isn't there an easier way since many websites also use similar styles of "COMPANY NAME (top left) then MENU (top right)"?
https://docs.google.com/document/d/1H5K ... ue&sd=true
I'm just trying to have a basic web company title at the top left, with the menu on the right. It works ok on desktop.
But I also want the responsive menu to be in the same top right position when in mobile view. Instead, it's all jumbled up below the company title in mobile view.
Isn't there an easier way since many websites also use similar styles of "COMPANY NAME (top left) then MENU (top right)"?
- Pablo
- Posts: 23645
- Joined: Sun Mar 28, 2004 12:00 pm
- Location: Europe
- Contact:
Re: How do I have layout grid columns side by side in mobile breakpoint?
The problem is related to the 100vh of the second layout grid. This affects the 'wrapping' behavior of the first grid.
You can prevent the automatic wrapping by adding this code to page HTML
The drop down menu has a built-in logo option.
You can prevent the automatic wrapping by adding this code to page HTML
Code: Select all
<style>
#LayoutGrid1
{
flex-wrap: nowrap !important;
}
</style>
-
-
- Posts: 101
- Joined: Sat Dec 28, 2019 6:59 pm
Re: How do I have layout grid columns side by side in mobile breakpoint?
Thanks for the code! That did it.
Thanks again.
Thanks again.