After updating to 4.7.5 from 4.7.4, the spacing of some of my pages are breaking due to this block of code inside the grid.css file. It adds an unexpected top margin to the flex column table style and is breaking the visual layout of a number of blocks on my website.
The style block in question is
#top .flex_column_table {
display: table;
table-layout: fixed;
width: 100%;
float: left;
margin-top: 50px; <--
}
I don’t want to have to insert an additional style to override this newly added style attribute, and I’m not sure why you guys added this top margin in the first place. Please provide a fix in a patch.
Nothing?
Hi smartstartinc,
The fix will be available in the next version. The patch is not available yet, unfortunately. Only the css solution.
Best regards,
Victoria
When is the next release scheduled? This is breaking my site.
Hi,
Sorry about the inconvenience!
We do not have an ETA yet unfortunately. Please use following code for the time being.
#top .flex_column_table {
margin-top: 0;
}
#top .flex_column_table.av-equal-height-column-flextable:not(:first-child) {
margin-top: 50px;
}
Regards,
Yigit
this is actually still the case that this top margin of 50px is there. I am currently struggling to get it out of the way, the above css code (with margin 0px seems to be ignored