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

    Hi,
    on the page below I use 3 testimonialboxes side-by-side and there are 3 problems with responsivity

    a) When I use a displaywidth smaller then 1230px, the boxname disappear bit by bit.
    b)When I use a displaywidth smaller then 880px, even the text of the boxes disappear bit by bit.
    c) When I reduce the displaywidth, the first row of boxes get smaller then the second/third row. That looks very ugly. What can I do?

    Thank you very much for your help!

    Regards,
    wordmax

    #447569

    Hi wordmax!

    Please try the following in Quick CSS under Enfold–>General Styling:

    @media only screen and (min-width: 880px) and (max-width: 1230px) {
    .page-id-3654 .no_margin.av_one_third {
      width: 50% !important;
    }
    }
    
    @media only screen and (max-width: 879px) {
    .page-id-3654 .no_margin.av_one_third {
      width: 100% !important;
    }
    }

    You might need to adjust the pixel values in the media queries a bit if it does not work as intended.

    Regards,
    Rikard

    #447727

    Hi Rikard,
    thank you for your answer. Maybe I do something wrong, but I inserted the code to Quick CSS and
    theres is no effect. Please have a look here http://goo.gl/7BvcD2

    Thank you!
    Regards,
    wordmax

    #448143

    Hey!

    Try this code:

    @media only screen and (min-width: 880px) and (max-width: 1230px) {
    .page-id-3654 .avia-testimonial.av_one_third {
      width: 50% !important;
      display: block;
    }
    }
    
    @media only screen and (max-width: 879px) {
    .page-id-3654 .avia-testimonial.av_one_third {
      width: 50% !important;
      display: block;
    }
    }

    Remove browser cache then reload the page.

    Regards,
    Ismael

    #449072

    Hi Ismael, hi Rikard
    now it works perfectly.
    Thank you very much for your help!
    Regards,
    wordmax

    #449322

    Hey!

    Glad we could help. :)

    Cheers!
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Testimonialbox-responsivity problems’ is closed to new replies.