Hi,
I’d like to center the title, and also the images on the collection page. Please see a screenshot below of the desired outcome:
Website: www.pillarstore.co.uk
Password: Password
Thanks!
Hi,
I’d like to center the title, and also the images on the collection page. Please see a screenshot below of the desired outcome:
Website: www.pillarstore.co.uk
Password: Password
Thanks!
Please add the following code at the bottom of your assets/theme.scss.liquid file.
.template-collection .grid.grid--no-gutters.grid--uniform{
display: flex !important;
justify-content: center;
}
This works for products not for heading. For the heading will have to do little bit of customization.
sorry for that issue
can you try this code
@media only screen and (min-width: 750px) {
header.grid.medium-up--grid--table.section-header.small--text-center {
position: relative;
}
.grid__item.medium-up--one-half.section-header__item {
width: 100%;
text-align: center;
}
.grid__item.medium-up--one-half.medium-up--text-right.section-header__item {
position: absolute;
right: 0;
}
.grid.grid--no-gutters.grid--uniform {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
}
Thanks for the above the code solved it perfectly!
its my pleasure to help us