@arminunruh I tried to add my code piece by piece and as far as I could see, it is always about the height value of
.elements-collection-region.same-height img {
height: 70vh !important;
width: auto !important;
}
in combination with the padding-bottom
you posted in the screenshot. This padding is added via right-clicking the element grid and giving it a 5% value for "Space Below". I removed those 5% and tried the calculation you suggested. Since it is 2 times the menu bar, this is:
height: calc(100vh - (2 * (var(--menu-top-padding) + var(--menu-font-size) + var(--menu-bottom-padding) + var(--line-strokewidth)))) !important;
I also tried:
height: calc(100vh - 328px) !important;
Unfortunately, both didn't help. (The padding-bottom
property of the .type-element
was also not the right choice... )
I would be truly thankful if you could still try to help me with this problem. Your support is very much appreciated...
All the best