content max width stopped working with pages with a section with height in percentage or browser height
-
Hey man, I'm happy to help here and fix this, but I would need a link to where I can see the issue.
-
Hi, I think it’s a global bug because it also happens in a fresh local installation.

Same page with this max width of content setting
Custom height for the row:

Whithout custom height for the row:


The check for apply max width for logo and menu always work.
-
will be fixed with the next update.
basically this css was missing from lay theme:
.row.rowcustomheight .row-inner{ position: relative; }You can also enter the CSS now in Lay options - custom CSS, and then it should work.
-
your CSS works for a row with some height in pixel or a vh lower than 100vh.
I take a look to the inspector and for the 100vh rows there is another class.
It works for all rows with this:.row.rowcustomheight .row-inner{
position: relative;
}
.row._100vh .row-inner{
position: relative;
} -
ah, so you need:
.row.rowcustomheight .row-inner{ position: relative; } .row._100vh .row-inner{ position: relative; }will be fixed with the next update
-
With this code,
.row.rowcustomheight .row-inner{
position: relative;
}
.row._100vh .row-inner{
position: relative;
}The X-Y percentage offset follow the 100% with container, not considering max width

Not a problem for me yet, i ll wait for your update, please consider this