Product information on mobile is not full width

Solved

Product information on mobile is not full width

katieg123
Visitor
2 0 0

I'm extremely frustrated and cannot figure out why my product descriptions are not full width on the mobile view. I've attached a screenshot for reference.

54e932-6e.myshopify.com is my website link. Any help is greatly appreciated

Screenshot 2024-07-21 at 8.07.13 PM.png

Accepted Solutions (3)

AnneLuo
Shopify Partner
1293 228 266

This is an accepted solution.

You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code above the </head> tag

<style>
@media only screen and (max-width: 749px) {
    .grid--1-col .grid__item {
        max-width: 100% !important;
    }
}
</style>

Result:

AnneLuo_0-1721611622483.png

Hopefully it will help you. If yes then Please don't forget hit Like and Mark it as solution!

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me   

Buy Me A Coffee

View solution in original post

Dan-From-Ryviu
Shopify Partner
11363 2227 2399

This is an accepted solution.

Hi @katieg123 

Please add this code at bottom of your base.css file to solve it

 

@media (max-width: 749px){
.product.grid--1-col .grid__item {
    max-width: 100% !important;
}
}

 

Screenshot 2024-07-22 at 11.16.10.png

- Found this helpful? Hit "Like" and "Accept as Solution"! Support me: Donate!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

View solution in original post

GTLOfficial
Shopify Partner
801 167 178

This is an accepted solution.

Hello @katieg123 

Go to online store ---------> themes --------------> actions ------> edit code------->base.css ----line number 908
search this code

@media only screen and (max-width: 749px) {
.grid--1-col .grid__item {
max-width: 32%;
}
}


and replace with this code

@media only screen and (max-width: 749px) {
.grid--1-col .grid__item {
max-width: 100%;
}
}

and the result will be

 5.png


If this was helpful, hit the like button and mark the job as completed.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh

View solution in original post

Replies 6 (6)

Kyle_liu
Shopify Partner
421 53 76

Hi @katieg123 

 

You can eidt theme code

file name base.css, in line 3586, remove it

.grid--1-col .grid__item {
    max-width: 32%;
}

 

 

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to contact me Email Me Buy Me A Coffee

AnneLuo
Shopify Partner
1293 228 266

This is an accepted solution.

You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code above the </head> tag

<style>
@media only screen and (max-width: 749px) {
    .grid--1-col .grid__item {
        max-width: 100% !important;
    }
}
</style>

Result:

AnneLuo_0-1721611622483.png

Hopefully it will help you. If yes then Please don't forget hit Like and Mark it as solution!

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me   

Buy Me A Coffee

Dan-From-Ryviu
Shopify Partner
11363 2227 2399

This is an accepted solution.

Hi @katieg123 

Please add this code at bottom of your base.css file to solve it

 

@media (max-width: 749px){
.product.grid--1-col .grid__item {
    max-width: 100% !important;
}
}

 

Screenshot 2024-07-22 at 11.16.10.png

- Found this helpful? Hit "Like" and "Accept as Solution"! Support me: Donate!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

Sweans
Shopify Partner
429 89 126

Hi @katieg123 ,

You can fix this issue by adding simple line of css

 

@media only screen and (max-width: 749px) {
.grid--1-col .grid__item {
max-width: 100% !important;
}
.product-form__buttons {
max-width: 57rem !important;
}
}

 


Add this code to your Base.css

Product-form_ button css is to aligin properly with the content


Online store > themes> click on the three dots of current active theme > Edit code > Search base.css in your left sidebar> open and paste the code in base.css


I hope your issue Will fix by the this.
I hope this helps! If it does, please like it and mark it as a solution!

Regards,
Sweans

- Was my reply helpful? Please Like and Accept the Solution or let me know by Buying me coffee!
- Want to modify or custom changes on store Hire me.
- Feel free to contact me at info@sweans.com regarding any help.
- To know more about me check out www.sweans.com

GTLOfficial
Shopify Partner
801 167 178

This is an accepted solution.

Hello @katieg123 

Go to online store ---------> themes --------------> actions ------> edit code------->base.css ----line number 908
search this code

@media only screen and (max-width: 749px) {
.grid--1-col .grid__item {
max-width: 32%;
}
}


and replace with this code

@media only screen and (max-width: 749px) {
.grid--1-col .grid__item {
max-width: 100%;
}
}

and the result will be

 5.png


If this was helpful, hit the like button and mark the job as completed.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh
katieg123
Visitor
2 0 0

wow thank you so much, that worked! I do have another question. How do i make these collection images smaller on my mobile view? Screenshot 2024-07-22 at 6.00.17 PM.png