Viewing 7 posts - 1 through 7 (of 7 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 4 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

    #1432903

    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

    #1432906

    Hi,
    I’m not seeing a top margin for the first .flex_column_table, only after the first one. Are you hiding the first one with some custom css? Please link to your page so we can examine, perhaps you have a different issue.
    The latest version is now v5.6.10

    Best regards,
    Mike

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