Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1411596

    Hi. I have the “Textblock Content Styling” on a lot of my pages, set to “2 Columns”. It looks great on desktop, but not good on mobile. Can you get me CSS code so that all mobile views are “1 column”?

    #1411607

    Hey bemodesign,

    Could you post a link to where we can see the elements in question please?

    Best regards,
    Rikard

    #1411651

    The 3rd section down has 2 columns.

    #1411654

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

    @media only screen and (max-width: 767px) { 
    #top .av_textblock_section .avia_textblock.av_multi_colums {
    	-webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1411673

    still shows 2 columns on mobile.

    #1411676

    Hi bemodesign,

    Please add try to add !important to Mike’s code:

    @media only screen and (max-width: 767px) { 
    #top .av_textblock_section .avia_textblock.av_multi_colums {
        -webkit-column-count: 1 !important;
        -moz-column-count: 1 !important;
        column-count: 1 !important;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    #1411678

    thanks!!!

    #1411696

    Hi,

    No problem! Let us know in a different thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Textblock Content Styling on mobile view’ is closed to new replies.