
Originally Posted by
chadlly2003
if I understand correctly if you want to make the template full with you can do this
path stylesheet_zcustom.css
.onerow-fluid {
margin: 0 auto !important;
width: 100% !important;
max-width: 1280px !important; <!-- remove this -->
}
path stylesheet_colors.css
#headerWrapper {
border-bottom: solid 1px #ccc;
padding-bottom: 2rem;
margin-bottom: 1rem !important;
max-width: 1280px !important; <!-- remove this -->
margin-left: 15px !important;
margin-right: 15px !important;
If you want to fit your item on one line
go to
path stylesheet_zcustom.css
.shoppingcart {
grid-template-columns: auto auto auto; <!-- add another auto -->
text-align: center;
gap: 1.5rem;
margin-top: 0px;
}
Note if you look at the css it is all grid based. So grid template columns controls how it is being displayed.