@46404888,
At present, your “Side News-module” uses class suffix “col-6” that means the module’s items show 6 columns which makes the width small. If you want the theme to be wider, please go to the module manager, and change class suffix from “col-6” to “col-5” or “col-4”.
Note: before change class suffix, please open templatesja_bookshopcsscustom.css (create such new file if it does not exits ) and add css rule:
.col-5 .ja-sidenews-list,
.col-4 .ja-sidenews-list,
.col-3 .ja-sidenews-list,
.col-2 .ja-sidenews-list {
margin: 0 -15px;
}
.col-5 .ja-slidenews-item,
.col-4 .ja-slidenews-item,
.col-3 .ja-slidenews-item,
.col-2 .ja-slidenews-item {
clear: none;
padding: 0 15px;
}
.col-5 .ja-slidenews-item {
width: 20%;
}
.col-4 .ja-slidenews-item {
width: 25%;
}
.col-3 .ja-slidenews-item {
width: 33.33%;
}
.col-2 .ja-slidenews-item {
width: 50%;
}