Archived topic
Footer widgets 2 to 1 column responsive break point
5 replies · Started by Pete on March 19, 2016
Hi Tom,
I have 2 footer widgets arranged in 2 columns as per the theme core settings. At ?768px the 2 columns break into 1 column (responsive). What media css do I need to keep the 2 columns until 900px?
Thanks,
Pete.
It should keep two columns until 768px, so you would still have two columns at 900px?
Exactly! Now let's try that again with what I really meant... 500px. Derrrrrrrr.
Try this:
@media (max-width: 768px) {
.inside-footer-widgets > .grid-50 {
width: 50%;
float: left;
}
}
@media (max-width: 500px) {
.inside-footer-widgets > .grid-50 {
width: 100%;
float: none;
}
}
Thanks Tom works a treat :)
ps. just read the great you had a baby, welcome to the best years of your life!
Thanks! I'm so tired.
