How can I edit mobile product page layout?

Hi,

How would I remove the black box on the product categories and move the category name below the image on mobile view?

Page: https://stmnt-streetwear.myshopify.com/collections

Thank you,

Marco

@mabrunhosa

can you please confirm

2 Likes

Hi Ketan

Placement is perfect, is it possible to change the text background to white and the font to black?

Thank you for your help!

Marco

1 Like

@mabrunhosa

yes its possible

1 Like

Thank you! How would I implement these 2 changes?

1 Like

@mabrunhosa

yes please add this code

@media only screen and (max-width: 749px) {
.collection-grid__title {
background-color: #fff;
    color: #1b100e;
}
.collection-grid__title-wrapper {top: 130px;}
.collection-grid__link-overlay, .collection-grid__link {overflow: visible;}
.collection-grid__item {
height: 300px;
    overflow: visible;
    padding-bottom: 100px;
}
}
1 Like