Make button full width

Solved

Make button full width

Daniel19901
Shopify Partner
296 2 88

Hi, I would like this button on the product page to be at the same width as the line above the  description , but the text should stay center aligned. thank you for your help!

 

f62c3a-3f.myshopify.com
Pass: daumas

 

I tried this but it didn't work
@media (min-width: 1024px) {
.btn--primary {
display: block;
width: 100%;
}
}

 

Daniel19901_0-1734018138670.png

 

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10211 2427 3078

This is an accepted solution.

Hi @Daniel19901 

Try this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

@media only screen and (min-width: 1024px){
.product__inner .shopify-product-form {
    max-width: 100% !important;
}
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1734024985463.png

     

 

 Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 4 (4)

Dan-From-Ryviu
Shopify Partner
12018 2348 2527

Hi @Daniel19901 

You can try to use this code instead 

@media (min-width: 1024px) {
.product .btn--primary {
max-width: 100% !important;
}
}

 

- Helpful? Like & Accept solution! - Support me? Buy me a coffee
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

Daniel19901
Shopify Partner
296 2 88

@Dan-From-Ryviu thx but it didn't work

Dan-From-Ryviu
Shopify Partner
12018 2348 2527

Please update the code 

 

@media (min-width: 990px) {
.product-page .shopify-product-form {
max-width: 100% !important;
}
}

 

- Helpful? Like & Accept solution! - Support me? Buy me a coffee
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

Made4uo-Ribe
Shopify Partner
10211 2427 3078

This is an accepted solution.

Hi @Daniel19901 

Try this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

@media only screen and (min-width: 1024px){
.product__inner .shopify-product-form {
    max-width: 100% !important;
}
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1734024985463.png

     

 

 Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.