Hi there! I’m working on the following website, and am having some trouble with the breakpoints for the widgets in the footer: http://shepherdstage.wpengine.com/
The footer widgets were breaking from two columns to one at too large a size, so I added the following code (per another forum) to change the responsiveness:
@media (min-width:481px) and (max-width: 979px) {
.x-column.x-md {
float: left;
width: 48%;
margin-right: 4%;
}
.x-column.x-md:nth-child(2n),
.x-column.x-md.last,
.x-column.x-md:last-of-type {
margin-right: 0;
}
}
This worked, however now the second widget isn’t top aligned. Any help is appreciated in getting them aligned vertically!
Thanks!
