You can send your questions to my email to get faster answer in 24 hours (free).
Buy me a coffee

Jackie

#1. Current code

This code should work without update

//LINE UP PRODUCT IMAGE TITLE VERTICALLY//
section.product-details.ProductItem-details {
    padding-top: 0px !important;
}

#2. Current code

//MAKE IMAGE FIT TO SIZE ON INDIVIDUAL PRODUCT PAGE//
img.ProductItem-gallery-slides-item-image {
    object-fit: contain !important;
}

Change it to this new code

// MAKE IMAGE FIT TO SIZE ON INDIVIDUAL PRODUCT PAGE //
img.product-gallery-slides-item-image{
    object-fit: contain !important;
}

#3. Current code

I checked some products and I don’t see price so I think it still works now. Can you check? If it doesn’t work, you can share link to a product, I will check again

//HIDE PRICE FROM RELATED PRODUCTS //
div.ProductItem-relatedProducts .product-price {
    display: none;
}

#4. Current code

//CHANGE BREADCRUMB FONT SIZE//
nav.ProductItem-nav * {
    font-size: 13px;
}

change it to this new code

//CHANGE BREADCRUMB FONT SIZE//
nav.product-nav * {
    font-size: 13px;
}