Check out button problems

Could someone help me with issue below? Check out button is all black

This is Richard from PageFly - Shopify Page Builder App

Hi @marcotanzi94 Please add code here to fix it:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file theme.liquid
Step 3: Add code above the tag


Hope my solution will help you resolve the issue.

Best regards,

Richard | PageFly

Hello @marcotanzi94
Go to online store ---------> themes --------------> actions ------> edit code------->base.css
add this code at the end of the file.

button#checkout {
color: #000 !important;
background-color: #fff;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

Hi @marcotanzi94 ,

Step 1. Go to Admin → Online store → Theme > Edit code

Step 2. Find the file base.css.

Step 3. Find the code like this

and change it to

button#checkout {
   color: white!important;
}

If it helps you, please like and mark it as the solution.

Best Regards

not resolved. Website: www.princessjewelry.it

www.princessjewelry.it

Hello @marcotanzi94

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 on theme.liquid

button#checkout { color: #fff !important; }

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