Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1468514

    Dear Enfold Team

    I would love to have 3 icon elements in one row on mobile, instead of having them aligned vertically i would love to have them horizontally basically.
    Also, i would love to have the width of that row to be the same more or less as the buttons on top. I will attach a screenshot of how it should look.
    It’s the first element on mobile layout (home).

    View post on imgur.com

    Thank you so much for providing me any sort of help. I just renewed my support licence, thanks!

    Cheers from Switzerland

    Miro

    #1468520

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

    @media only screen and (max-width: 479px) { 
    .flex_column.avia-builder-el-19 .av_font_icon {
        display: inline-block; 
        margin-left: 10%; 
    }
    .flex_column.avia-builder-el-19 {
        display: flex; 
        justify-content: center; 
    }
    .flex_column.avia-builder-el-19 .hr.hr-invisible {
        display: none; 
    }
    }

    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

    #1468522

    Thank you so much, it looks fantastic!
    Is there a way to make the white box less wide? So it’s more or less the with of the symbols?
    I attach a screenshot:

    View post on imgur.com

    Thank you so much and have a lovely Sunday Mike!!

    #1468537

    Hi,

    Thank you for the update.

    Please add this css code inside the css media query..

    .responsive #top #wrap_all .flex_column.av-2o2o-d04f592131d4626bc887b0d7857940a1 {
        width: 60%;
        margin: 0 auto;
        float: none;
    }

    .. right after this css rule:

    .flex_column.avia-builder-el-19 .hr.hr-invisible {
        display: none; 
    }
    

    Best regards,
    Ismael

    #1468586

    Thank you so much, it looks fantastic now!
    Last little request: it seems like the three icons are not perfectly centered, slightly too much to the right.
    Is there a way to have them perfectly central?

    thank you Ismael, have a wonderful day!

    #1468599

    Hi,

    Please replace this in Mikes code:

    .flex_column.avia-builder-el-19 .av_font_icon {
        display: inline-block; 
        margin-left: 10%; 
    }

    With this:

    .flex_column.avia-builder-el-19 .av_font_icon {
        display: inline-block; 
        margin: 0 5% 0 5%; 
    }

    Best regards,
    Rikard

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