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

    hi! i need to change layout of footer column:

    i need to have 4 column,

    1: 2 columns
    2: 4 columns
    3: 5 columns
    4:1 columns

    how can i do this?

    #972396

    Hey 4EPIU,

    So to be clear are you looking to have columns nested within columns?

    Best regards,
    Jordan Shannon

    #972417

    If you have 4 columns in the footer, these columns will all have the same width.

    I would rather have different widths depending on the column.

    as an example that I attach.

    View post on imgur.com

    My question is how can I give different width to individual columns?

    #972430

    Hi,

    So simply put 4 columns of different sizes? This is possible on desktop though on mobile, you will likely have to keep them full-width 100%

    Best regards,
    Jordan Shannon

    #972452

    yes, I put 100% on my cell phone.

    How can I make them of different sizes on the desktop?
    how can i edit width of the colums in the footer?

    • This reply was modified 6 years, 3 months ago by 4EPIU.
    #972498

    Hi,

    Add this to quick css and adjust the sizes to what you need:

    @media only screen and (min-width: 767px)  {
    #footer .flex_column.av_one_fourth:nth-child(1) {
    width: 40%;
    }
    
    #footer .flex_column.av_one_fourth:nth-child(2) {
    width: 30%;
    }
    
    #footer .flex_column.av_one_fourth:nth-child(3) {
    width: 20%;
    }
    
    #footer .flex_column.av_one_fourth:nth-child(4) {
    width: 10%;
    }}

    Best regards,
    Jordan Shannon

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