Why does coding changes not reflect in mobile view?

Why does coding changes not reflect in mobile view?

danielcorrea
Explorer
56 0 15

Hi, I have made several changes to the code. I want to remove the thin stripes from the borders of the product images and in the images in the descriptions. I also wanted to add a border to the add to cart button. This all works perfectly in the desktop view. However, on mobiles the changes are not visible. It is strange because in the mobile view preview the changes do appear. Please help me.

IMG_0087.jpgIMG_0086.jpgIMG_0085.jpg

Replies 3 (3)

Dan-From-Ryviu
Shopify Partner
9695 1937 1973

Hi @danielcorrea 

Please add this code at the bottom of your base.css file 

.product-form__buttons button.product-form__submit {
    border: 2px solid #131313 !important;
}
.product__accordion .rte img {
    border: unset !important;
}
@media screen and (max-width: 749px) {
.product-media-container.media-fit-cover {
    border: unset !important;
}
}

 

- Helpful? Like and Accept solution! Support me! Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

danielcorrea
Explorer
56 0 15

Not working. Any change on my code affects mobile view. Please help

Dan-From-Ryviu
Shopify Partner
9695 1937 1973

Try to push code in theme.liquid file before </head> tag to check

<style>
.product-form__buttons button.product-form__submit {
    border: 2px solid #131313 !important;
}
.product__accordion .rte img {
    border: unset !important;
}
@media screen and (max-width: 749px) {
.product-media-container.media-fit-cover {
    border: unset !important;
}
}
</style>

- Helpful? Like and Accept solution! Support me! Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.