Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #1025846

    I am part way through a build and can see that the site (when viewed on tablets) does not go responsive.

    Columns are still present and it looks pretty bad…

    What CSS do I need to tell the site to hit responsive at (let’s say) 1280px ?

    Your help is ALWAYS appreciated!

    #1025957

    I want the site in mobile view on portrait iPad2

    • This reply was modified 6 years, 1 month ago by whdsolutions.
    #1025965

    Here is a simple sketch – way too busy here to do a mock-up sorry!

    #1026060

    Hi whdsolutions,

    Best regards,
    Victoria

    #1026231

    Website is up :-)

    #1026235

    You can see how it looks on the iPad in portrait mode

    REALLY BAD

    #1026244

    Does ANYONE KNOW how to do this – I have tried EVERY bit of CSS I can find on the forums

    My client is going crazy here!!!!

    #1026256

    I have tried this

    this does NOT WORK either :-(

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

    #1026550

    Hi whdsolutions,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    
    @media only screen and (min-width: 768px) and (max-width: 989px) {
      #av_section_2 .flex_column_table,
      #av_section_3 .flex_column_table,
      #av_section_4 .flex_column_table {
          display: block;
          table-layout: none;
      }
      #av_section_2 .flex_column_table_cell,
      #av_section_3 .flex_column_table_cell,
      #av_section_4 .flex_column_table_cell {
        display: block;
        margin-left: 0;
      }
    }
    

    Please refrain from bumping or replying to your own thread because it gets pushed back to the end of the queue and moderators won’t be able to provide a response immediately. Please be patient while we go through the rest of the queue. Thank you for your understanding.
    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1026696

    Still not right – the columns are STILL 1/2 and 1/2 but underneath each other :-(

    Why are the columns not going full width???

    There are login details below if you need to take a closer look…

    PS I have removed the latest code as it looked so bad!

    • This reply was modified 6 years, 1 month ago by whdsolutions.
    #1027420

    Any news on this???

    My client is getting very very twitchy about this!

    #1027441

    Hi whdsolutions,

    Add this code too:

    
    @media only screen and (min-width: 768px) and (max-width: 989px) {
      div .av_three_fifth, div .av_two_fifth, div .av_one_half {
          margin-left: 0%;
          width: 100%;
      }
    }
    

    Best regards,
    Victoria

    #1027466

    Superb!!!

    finally, Is there a way to add a little spacing between the columns when they rearrange?

    #1027559

    Hi whdsolutions,

    Try the code like this:

    
    @media only screen and (min-width: 768px) and (max-width: 989px) {
      div .av_three_fifth, div .av_two_fifth, div .av_one_half {
          margin-left: 0%;
          width: 100%;
          margin-top: 5%;
      }
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

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