Hi wnrdesign,
If you want to display a fixed width for JA Wall block, you need to customize a bit.
The layout with the fixed width block will cause some spaces on the right.
/* Medium */
.item {
width: 300px !important;
}
/* Small */
body.basegrid-s .item {
width: 300px !important;
}
/* Large */
body.basegrid-l .item {
width: 300px !important;
}
/* X-Large */
body.basegrid-xl .item {
width: 300px !important;
}
You can define all width value with 300px (or any value you like, just remember add !important to overwrite JA Wall default)
and change ‘updateContainerWidth’ function in templatesja_walljswall.js (line 90) to:
updateContainerWidth = function () {
lastWndWidth = $(window).width();
var cw = $('#base-blank-item').css('width', '').width();
$('#base-blank-item').width(cw);
if ($container.data('basewidth') != cw) {
$container.data('basewidth', cw);
updateBrickWidth();
}
// reload layout
reloadMasonry();
},
Hope it helps,
Regards