We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

AddToCart bigger and delete a line

AddToCart bigger and delete a line

Optimist1
Explorer
55 2 11

Capture 13.JPG

 

I quickview of "pairs well with":

 

Please, I want AddToCart bigger and delete the line containing "Availability : In Stock"

 

Website URL: happyoff.com

Replies 4 (4)

Moeed
Shopify Partner
7764 2082 2568

Hey @Optimist1 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
.t4s-available-wrapper {
    display: none !important;
}
.t4s-product-form__buttons .t4s-product-form__submit {
    font-size: 20px !important;
}
</style>

RESULT:

Moeed_0-1732799932925.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


Optimist1
Explorer
55 2 11

The Line is removed but the AddToCart Button is still in the same size - and do not forget the font size of the "Add to cart" Text, Here you are the screen:

 

Capture 14.JPG

Tech_Coding
Shopify Partner
520 133 131

Hello @Optimist1 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
  .t4s-product-form__variants.is-btn-full-width__false .t4s-product-form__submit {
       width: 100% !important;
       min-width: unset !important;
       max-width: 100% !important;
   }
   .t4s-available-wrapper {
      display: none !important;
   }
</style>

Tech_Coding_0-1732800266227.png
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.
Optimist1
Explorer
55 2 11

The Line is removed but the AddToCart Button is still in the same size - and do not forget the font size of the "Add to cart" Text, Here you are the screen:

 

Capture 14.JPG