Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #666088

    Hi,

    i use 4 columns av_on_fourth in one row. On desktop and mobile it looks good. But on tablets the columns get very small and are positioned on the left (see Screenshot)

    bild
    Is it possible to get a better responsive Design for that?

    best regards

    Chris

    • This topic was modified 8 years, 3 months ago by Chris_85.
    #666820

    no idea?

    #667254

    Hi,

    Sorry for the late reply!
    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 769px) {
    .flex_column.av_one_fourth { 
    width: 100% !important;
    margin-left: 0 !important;
    }}
    

    Best regards,
    Yigit

    #668621

    Hi Yigit
    thanks for your answer. i also had your css code. But is it possible to have on tablets two images side by side?

    best regards

    Chris

    #669380

    Hi Chris,

    You could try something like this instead:

    @media only screen and (min-width: 768px) and (max-width: 1024px) {
    .flex_column.av_one_fourth { 
    width: 50% !important;
    margin-left: 0 !important;
    }
    }

    Best regards,
    Rikard

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