Responsive Layout grid
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: 26
- Joined: Tue Sep 26, 2017 10:22 am
Responsive Layout grid
Dear All,
I am using Layout grid for my whole website. When I am using a layout grid individually, it resizes perfectly when page size decreases or maximizes. But when I use a multi section layout grid, the text content size inside every box overflows differently. If I use a fixed column height, it also resizes differently. Have attached a single page project for reference.
How to maintain layout grid responsiveness when the page varies from minimum to maximum ? No problem if the font size decreases but each box size should resize equally.
https://docs.google.com/document/d/1wDy ... ue&sd=true
https://drive.google.com/drive/folders/ ... drive_link
Regards
Girija
I am using Layout grid for my whole website. When I am using a layout grid individually, it resizes perfectly when page size decreases or maximizes. But when I use a multi section layout grid, the text content size inside every box overflows differently. If I use a fixed column height, it also resizes differently. Have attached a single page project for reference.
How to maintain layout grid responsiveness when the page varies from minimum to maximum ? No problem if the font size decreases but each box size should resize equally.
https://docs.google.com/document/d/1wDy ... ue&sd=true
https://drive.google.com/drive/folders/ ... drive_link
Regards
Girija
Re: Responsive Layout grid
First, you should not use a fixed height in flexible layouts otherwise the text and other objects cannot overflow.
Can you please describe where in the project I need to look because there is a lot of content?
Please try to keep your demo project simple. Otherwise it will take me a lot of time to figure out how to help you.
See also:
viewtopic.php?f=10&t=82134
Also note that support on version 17 has ended.
Can you please describe where in the project I need to look because there is a lot of content?
Please try to keep your demo project simple. Otherwise it will take me a lot of time to figure out how to help you.
See also:
viewtopic.php?f=10&t=82134
Also note that support on version 17 has ended.
-
-
- Posts: 26
- Joined: Tue Sep 26, 2017 10:22 am
Re: Responsive Layout grid
Inside LayoutGrid46,
LayoutGrid48, LayoutGrid49, LayoutGrid50 show different sizes when page size is varied from minimum to maximum. Also bottom of all three layout grids are not at the same level even though they are inside same LayoutGrid46.
How to maintain the same size for all three LayoutGrid ?
Regards
LayoutGrid48, LayoutGrid49, LayoutGrid50 show different sizes when page size is varied from minimum to maximum. Also bottom of all three layout grids are not at the same level even though they are inside same LayoutGrid46.
How to maintain the same size for all three LayoutGrid ?
Regards
-
-
- Posts: 26
- Joined: Tue Sep 26, 2017 10:22 am
Re: Responsive Layout grid
I changed height to "auto" but result is same (Uneven height)
Re: Responsive Layout grid
Can you please read this?
viewtopic.php?f=10&t=82134
And then update your project, so I do not have to go through hundreds of settings to figure out how to help you.
viewtopic.php?f=10&t=82134
And then update your project, so I do not have to go through hundreds of settings to figure out how to help you.
Re: Responsive Layout grid
Keep in mind, that the contents inside of a layout grid will determine the height of the grid. If one grid has more text and depending on how it wraps, it will affect the overall height. You have the grids set to 75vh which but the problem you will have is if the content becomes longer/taller than what 75vh is then it will overflow the container. The amount of text you have will most certainly overflow on a phone as it will be longer than 75vh.
You could try adding min-height css code to the grids so they are at least a minimum height and then add a breakpoint and change the height to auto at some point for mobiles.
Another option would be to use cards in a card container.
You could try adding min-height css code to the grids so they are at least a minimum height and then add a breakpoint and change the height to auto at some point for mobiles.
Another option would be to use cards in a card container.
-
-
- Posts: 26
- Joined: Tue Sep 26, 2017 10:22 am
Re: Responsive Layout grid
New minimal link
https://docs.google.com/document/d/1-dy ... ue&sd=true
I am looking help on:
1. Each box in a layout grid section (multi sections are there) should have same size when browser size changes between minimized to maximized. That should be independent of the content amount in each box
Regards
https://docs.google.com/document/d/1-dy ... ue&sd=true
I am looking help on:
1. Each box in a layout grid section (multi sections are there) should have same size when browser size changes between minimized to maximized. That should be independent of the content amount in each box
Regards
Re: Responsive Layout grid
Then you will need to set a minimum height. A grid is flexible so it is only as big as the content inside. If you require the same height then you will need to set the grid height to auto and use CSS to set a minimum height.That should be independent of the content amount in each box
Example:
Code: Select all
<style>
#LayoutGrid50,#LayoutGrid48,#LayoutGrid49{min-height:400px;}
</style
You may be better off using cards like I mentioned before.
-
-
- Posts: 26
- Joined: Tue Sep 26, 2017 10:22 am
Re: Responsive Layout grid
Dear crispy68,
You had been a savior always. I have zero knowledge in coding.
Can you please help where to insert this code ?
You had been a savior always. I have zero knowledge in coding.
Can you please help where to insert this code ?
Re: Responsive Layout grid
You can add it either via the page html between <head> tags or insert it using a html code box in the same section.
I would advise you to check out using cards in a card container to achieve the same results.
I would advise you to check out using cards in a card container to achieve the same results.
-
-
- Posts: 26
- Joined: Tue Sep 26, 2017 10:22 am
Re: Responsive Layout grid
Thank you crispy68, for helping out.
I am exploring cards and it is promising. Will update after I get my result.
Thanks again
Regards
I am exploring cards and it is promising. Will update after I get my result.
Thanks again
Regards
Re: Responsive Layout grid
I think using CSS to set a minimum height for the layout grids is a good approach. You can also experiment with different values to find the one that works best for your design.
-
-
- Posts: 26
- Joined: Tue Sep 26, 2017 10:22 am
Re: Responsive Layout grid
Heartfelt thanks to crispy68 and MAX_CDF
Did set a minimum height and a maximum height and it worked best for me.
Regards,
Girija
Did set a minimum height and a maximum height and it worked best for me.
Regards,
Girija