Okay
  Public Ticket #2873034
footer widget custom width
Closed

Comments

  •  13
    Rodney started the conversation

    I have a 4-column footer. I am trying to achieve a ratio of 20-20-40-20. (See attached image.) Can help me with the custom css to achieve it?

  •  1,878
    Judith replied

    Hi Rodney,

    Please send in your admin login credentials so that we can look into this further.

    Thanks.

  •  2,960
    Andrew replied

    Hi Rodney,

    The following CSS might help.

    #footer-outer .col:first-child {
        width: 18.5%;
    }
    #footer-outer .col:nth-child(2) {
        width: 18.5%;
    }
    #footer-outer .col:nth-child(3) {
        width: 38.5%;
    }
    #footer-outer .col:last-child {
        width: 18.5%;
    }
    

    Regards,

  •  13
    Rodney replied

    Andrew, Judith:

    The css you provided did the trick. I tweaked the values slightly and got just what I needed. Thank you!