How to change Featured Product color and text? (Dawn theme)

Solved

How to change Featured Product color and text? (Dawn theme)

thesheaparlor
Excursionist
23 0 8

How can i make the "add to cart" the same color as the "View All" button . I also want it to say "Add to Bag" instead of "Add to cart"

Screen Shot 2024-09-26 at 7.10.04 PM.png

Accepted Solution (1)
BSSCommerce-HDL
Shopify Partner
2292 842 1057

This is an accepted solution.

Hi @thesheaparlor

Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

Step 2: Search file theme.liquid

Step 3: Add this code before </head> tag:

<style>
.quick-add__submit {
    background-color: #e77e93 !important;
    color: #ffff;
}
</style>

 Here is result: 

BSSCommerceHDL_0-1727404129887.png

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

View solution in original post

Replies 10 (10)

BSSCommerce-HDL
Shopify Partner
2292 842 1057

Hi @thesheaparlor , Can you kindly share your store link with us? We will check it and suggest you a solution if possible.

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

thesheaparlor
Excursionist
23 0 8

Here is my preview link: https://ycsv733p20dsfgvg-26704248912.shopifypreview.com

 

Thank You!

BSSCommerce-HDL
Shopify Partner
2292 842 1057

This is an accepted solution.

Hi @thesheaparlor

Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

Step 2: Search file theme.liquid

Step 3: Add this code before </head> tag:

<style>
.quick-add__submit {
    background-color: #e77e93 !important;
    color: #ffff;
}
</style>

 Here is result: 

BSSCommerceHDL_0-1727404129887.png

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

thesheaparlor
Excursionist
23 0 8

YES! That worked thank you so much. You are the first person who's ever sent a screenshot of what the result should look like, i appreciate it! 🙂 Can I ask you more questions here or should I message you privately? I wanted to change the spacing of some stuff on my page as well as fixing my images that are too large in desktop mode. Thank you! 

BSSCommerce-HDL
Shopify Partner
2292 842 1057

@thesheaparlor, No problem. Can you kindly share the details of your problem (screenshot) with us?

 

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

thesheaparlor
Excursionist
23 0 8

Yes, my first problem is that the mobile layout is fine, but in desktop mode, the images are way too big and do not adapt to desktop correctly.  Here is my preview link: https://1hyf20wssoxuzngz-26704248912.shopifypreview.comScreen Shot 2024-09-29 at 4.55.00 PM.pngScreen Shot 2024-09-29 at 4.54.53 PM.pngScreen Shot 2024-09-29 at 4.54.47 PM.pngScreen Shot 2024-09-29 at 4.54.13 PM.pngScreen Shot 2024-09-29 at 4.54.05 PM.pngScreen Shot 2024-09-29 at 5.08.25 PM.png

Tech_Coding
Shopify Partner
287 72 64

Hello @thesheaparlor 

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>
   product-form .quick-add__submit {
      background: #e48092 !important;
      color: #fff !important;
   }
   product-form button.quick-add__submit span:after {
       visibility: visible;
       content: 'Add to Bag';
        display: block;
        top: 15px;
        position: absolute;
   }
   product-form button.quick-add__submit span {
      visibility: hidden !important;
   }
</style>

Tech_Coding_0-1727404908562.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.

suyash1
Shopify Partner
9851 1225 1566

@thesheaparlor  can you please share this page link? also, please go to 

Online Store > Themes > in the current theme, click "..." > Edit default theme content

 

and go to product tab to check if you have add to cart text, you can change it from there

To build shopify pages use pagefly | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30. | Support me
thesheaparlor
Excursionist
23 0 8
suyash1
Shopify Partner
9851 1225 1566

@thesheaparlor   - please add this css to the very end of your base.css file and check,
Shopify Admin -> Online Store ->Theme -> Edit code -> base.css

 

.quick-add__submit {background: #e48092 !important; color: #fff !important;}

 

 

To build shopify pages use pagefly | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30. | Support me