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

    On one breakpoint, the columns are not aligning properly

    screenshot – https://ibb.co/VjZd0SV

    live site – https://shawnstoppable.com/contact/

    #1325638

    Hey navindesigns,

    Please try adding this CSS code in Quick CSS:

    @media only screen and (max-width:1023px) and (min-width:768px) {
      .page-id-170 #av_section_1 .entry-content-wrapper .av_one_fourth.first, 
      .page-id-170 #av_section_1 .entry-content-wrapper .av_one_fourth.avia-builder-el-last {
        display: none;
      }
    
      .page-id-170 #av_section_1 .entry-content-wrapper .av_one_fourth.av-mz0ia-51665eaae8c457c5c0d459575ed5772f {
        margin-left: 0;
      }
    
      .page-id-170 #av_section_1 .entry-content-wrapper .av_one_fourth.av-h8keq-51eaed5d1c528d5c1ae8e95afdbcba7f {
        clear: none;
        margin-top: 0;
        margin-left: 4%;
      }
    }

    Best regards,
    Nikko

    #1325774

    Thanks. That works

    But now if I put “individual height” on other places like https://shawnstoppable.com/about/ (first block), it breaks into the second line. I am not sure if this is related to that as well

    #1325808

    Hi,

    Thank you for the update.

    Did you add the following css code? The css adjusts the width and margin of the 1/4 column element and causes the next column (3/4) to move to the second line.

    div .av_one_fourth {
        margin-left: 2%;
        width: 24.5%;
    }
    

    This is the default style or width of 1/4 column element.

    div .av_one_fourth {
        margin-left: 6%;
        width: 20.5%;
    }
    

    Best regards,
    Ismael

    #1325891

    Yes, I did

    I wanted to reduce the spacing between columns on 1/4 but I guess I need to add the same for 3/4 now?

    Please provide me with that code

    thanks

    #1325966

    Hi,

    Thank you for the clarification.

    Try to use this css code to adjust the width and left margin of the 3/4 column.

    div .av_three_fourth {
        margin-left: 2%;
        width: 73.5%;
    }
    

    Default left margin is set to 6%.

    Best regards,
    Ismael

    #1326866

    that works

    thanks

    #1326983

    Hi,

    No problem. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Fix alignment issue on one breakpoint’ is closed to new replies.