Tagged: grid row
Hello,
I am using a grid row section and one of the columns is showing up shorter than the other ones and I can’t figure out why. All of the photos were uploaded with the exact same dimensions and all rows have the same padding settings. Any ideas why this might be happening. Thanks in advance!
Hey Kirstie,
Thank you for the link to your site, the last element is being resized due to this css:
#top .flex_cell:last-child {
border-right-width: 12px!important;
}
It looks like it has been added to your child theme style.css, please try removing it and adding this css instead:
#top.home #av-layout-grid-1.av-layout-grid-container {
width: 99% !important;
}
Best regards,
Mike
That worked great! Thank you!