Site logo

Archived topic

Flexible Footer Widths

7 replies · Started by Alex on September 4, 2016

Viewing posts 1–8 of 8

Hi there,

I would first like to say a massive well done on the theme, it is amazing.

I do however have a request, footer width settings, is or would it be possible to set footer widths?

Footer 1 - 20% | Footer 2 80%

An example as above.

Regards
Alex

Hi there,

Give this a try:

@media (min-width: 769px) {
    .active-footer-widgets-2 .footer-widget-1 {
        width: 20%;
    }

    .active-footer-widgets-2 .footer-widget-2 {
        width: 80%;
    }
}

Yep that is what i am using right now, just an idea to be able to set them in the admin without custom css.

Thank you Tom for your quick support :)

Alex

I'll see if I can come up with something :)

Hi Tom,

What are the footer settings for:

Footer 1 - 20% | Footer 2 - 20% | Footer 3 – 20% | Footer 4 - 40%

Same idea as the above:

@media (min-width: 769px) {
    .active-footer-widgets-4 .footer-widget-1 {
        width: 20%;
    }

    .active-footer-widgets-4 .footer-widget-2 {
        width: 20%;
    }

    .active-footer-widgets-4 .footer-widget-3 {
        width: 20%;
    }

    .active-footer-widgets-4 .footer-widget-4 {
        width: 40%;
    }
}

Looks great! Very nice design :)

This archived topic is closed to new replies.