Tagged: 

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

    Hi,

    I’m trying to achieve this column structure: 1/6 1/3 1/6 1/3

    I’ve dug into the documentation and previous threads, added the ID “av-extra-columns” and the Quick CSS.

    Can anyone please help out?

    Thanks.

    #1432089

    Hi tebitron gmbh,

    Can you give us the link to the page where this is applied? so we can try to inspect it further.

    Best regards,
    Nikko

    #1432109

    Hi Nikko,

    please find the link and the admin access attached.

    Thanks.

    #1432324

    i would layout four 1/4 columns inside a color section with a custom class f.e.: special-sixth-grid

    and then place this to your quick css:
    ( fr is abreviation for fraction – means part – so if there are for 100% = 6fr : 1fr 2fr 1fr 2fr that is your setting of 1/6 2/6 1/6 2/6 )

    #top .special-sixth-grid .entry-content-wrapper {
      display: grid;
      margin: 0;
      gap: 20px;
      grid-auto-flow: row;
      grid-template-columns: 1fr 2fr 1fr 2fr; 
      align-self: stretch
    }
    
    @media only screen and (min-width: 768px) and (max-width: 989px) {
      .responsive #top .special-sixth-grid .entry-content-wrapper {
        gap: 20px;
        grid-template-columns: 1fr 2fr; 
      }
    }
    
    @media only screen and (max-width: 767px) {
      .responsive #top .special-sixth-grid .entry-content-wrapper {
        gap: 20px;
        grid-template-columns: 1fr; 
      }
    }
    
    #top .special-sixth-grid .entry-content-wrapper:before,
    #top .special-sixth-grid .entry-content-wrapper:after {
      display: none;
    }
    
    #top .special-sixth-grid .entry-content-wrapper .flex_column {
      width: unset !important;
      margin: 0 !important;
    }

    see an example page ( only the top part – i added to an existing example page ): https://webers-testseite.de/4on1-flexbox-model/

    #1432610

    Thanks Guenni007! This did the job.

    Top notch support!

    #1432707

    Hi,

    Great, I’m glad that @guenni007 could help you out :-)

    Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1432709

    Hi Rikard,

    you can close it. Thanks.

    #1432738

    Hi,

    Thanks for letting us know, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Smaller columns structure 1/6 1/3 1/6 1/3’ is closed to new replies.