Hello,
I’m trying to set up the Fullwidth Masonry. Default is 100% full page. Wondering if there is a way to present it like in a boxed layout. Basically, so it fits within the twelve units container even when stretched layout for site is selected. Thanks in advance for any guidance.
Hey shelteredinsound!
I didn’t test it but you should be able to limit the width of the masonry element with following css code
.main_color .av-masonry {
max-width: 1310px;
margin-left: auto;
margin-right: auto;
}
Regards,
Peter
Awesome. Thanks as always. Best thing about Kriesi themes is the support! I had to tweak slightly to get it exactly as I wanted in case anyone else wants to do this and trips across this tread. See below.
.main_color .av-masonry {
max-width: 1060px;
position: center;
margin-left: auto;
margin-right: auto;
}