Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #910212

    Hi
    My site is built of columns with 40px padding. I need to change that for mobile devices, but can’t find the right css.

    tried this code:
    @media only screen and (max-width: 767px) {
    .flex_column.av_three_fifth.flex_column_div.avia-builder-el-2.el_after_av_one_fifth.el_before_av_one_fifth {
    padding: 20px;
    }}
    but didnt’ seem to work.
    Can you help me out?
    Thanks
    Nancy

    #910227

    Hey Munford,
    Try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) { 
    .flex_column.av_three_fifth.flex_column_div {
    padding: 20px !important; 
    }
    }

    Best regards,
    Mike

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