Footer widget 1/3 and 2/3

HI,

How can I have the 2 Footer widget width to 1/3(30%) & 2/3(70%) size? This should also apply on Tab.

I am using
X - 6.2.5
WP - 4.9.8
Stack - Renew

Thanks,
Dhiren.

Hi There,

It’s possible with the custom CSS.

Please change the FOOTER WIDGET AREAS to Two columns first:

After that add this custom CSS under Theme Options > CSS:

@media (min-width: 768px){
    footer.x-colophon.top .x-column.x-md.x-1-2 {
        width: 30%;
    }

    footer.x-colophon.top .x-column.x-md.x-1-2.last {
        width: 66%;
    }
}

Hope that helps and thank you for understanding.

1 Like

Thanks, this worked :slight_smile:

You are most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.