Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1433882

    Hi,
    please send css for following problem: There are 3 cells in the flip box grid. When the window is wide it is ok. But when it is smaller then the cells overlap. This is because before it reaches breaking point and the images are aligned vertically, they briefly move on top of eachother. See here: https://ibb.co/7t748SZ

    This looks particularly bad in the mobile version on some mobile phones with larger screens.

    Please send CSS so I can adjust breaking point.

    #1433959

    Hey ausgesonnen,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 1190px) {
    #top .avia-icongrid.av-flex-cells.av-break-989 .av-icon-cell-item {
        flex: 1 1 100%;
    }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1434063

    Thanks Mike. Much better. One last thing about this: The 3 cells could make better use of the widths of the window. There is a lot of space on the left and right. I tried to adjust the padding but it doesn’t seem to make a difference either way.

    Please send CSS to space out the boxes more and reduce margins left and right.

    Thank you.

    #1434072

    in addition to my request above I just noticed another thing on the mobile view. The spaces between the cells vertically is very large. How to make them smaller?

    #1434278

    Hi,
    Thank you for your patience, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .responsive #top #av_section_4 .container {
    	width: 100%;
    }
    @media only screen and (max-width: 767px) { 
    	#top #av_section_4 .avia-icongrid .av-icon-cell-item .avia-icongrid-flipback {
    		padding: 0 3em;
    	}
    	.avia-icongrid-flipbox .av-icon-cell-item .avia-icongrid-front .avia-icongrid-inner, .avia-icongrid-flipbox .av-icon-cell-item .avia-icongrid-flipback .avia-icongrid-inner {
    		padding: 0 3em;
    	}
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1434331

    Ok much better on mobile. However now the breakpoint on desktop is too wide. The icons get vertically aligned a bit too soon.

    #1434391

    Hi,
    The first css above is what sets the breakpoint:

    @media only screen and (max-width: 1190px) {
    #top .avia-icongrid.av-flex-cells.av-break-989 .av-icon-cell-item {
        flex: 1 1 100%;
    }
    }

    feel free to adjust to suit your needs

    Best regards,
    Mike

    #1435411

    Thank you. That works fine now.

    #1435421

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Breakpoint for Flipbox Grid to be set to lower.’ is closed to new replies.