Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1224664

    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.

    • This topic was modified 3 years, 5 months ago by Michael.
    #1225007

    Nothing?

    #1225203

    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

    #1225295

    When is the next release scheduled? This is breaking my site.

    #1225302

    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

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.