Tagged: size, Theme font, woocommerce
- This topic has 8 replies, 2 voices, and was last updated 1 year, 10 months ago by
JoeMcOmber.
-
AuthorPosts
-
February 9, 2022 at 1:46 am #299277
JoeMcOmber
ParticipantFor our site https://sericheybooks.com/ the theme font used on the buttons and other areas of the checkout process are too small. How I can adjust the size or possibly use a default font instead of the theme font?
February 9, 2022 at 4:27 am #299295Skandha
Participant@joemcomber: Hello there,
Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
.woocommerce-checkout .button { font-family: "Noto Sans", sans-serif; }
Let me know if this works out!
Kind Regards,
SkandhaFebruary 9, 2022 at 1:13 pm #299312JoeMcOmber
ParticipantHi, that didn’t seem to work, but the issue is the font throughout the whole checkout process, not just the checkout button. We don’t want to use the theme font for the price & subtotal in the cart, the APPLY COUPON, UPDATE CART, and PROCEED TO CHECKOUT buttons, or the Subtotal, Shipping Rate and Total in the CART TOTALS section.
February 10, 2022 at 8:10 am #299400Skandha
Participant@joemcomber: Hello there,
Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
.woocommerce-Price-amount.amount, .actions button, .checkout-button { font-family: "Noto Serif", serif; } .actions .button { font-size: 1rem !important; }
Let me know if this works out!
Kind Regards,
SkandhaFebruary 10, 2022 at 11:33 am #299409JoeMcOmber
ParticipantHi, that did work but there are few things that I need to tweak. Can I make the Price, Subtotal, Shipping and Total fonts a little smaller in size?
Also, on the CHECKOUT page, I need to make the font for SHIP TO A DIFFERENT ADDRESS a little bigger. There’s also a formatting issue where the window icon is under the word “HAVE” in the “Have a coupon? Click here to enter your code” section. Can anything be done about that?
Thanks!
February 10, 2022 at 11:24 pm #299481Skandha
Participant@joemcomber: Hello there,
Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
/* To change the font size of price, subtotal, shipping and total */ .woocommerce-Price-amount.amount { font-size: 20px; } /* To increase the font size of Ship To a Different Address */ #ship-to-different-address span { font-size: 20px; } /* To fix the formatting of Have a Coupon icon */ .woocommerce-form-coupon-toggle .woocommerce-info::before { top: 31px; left: 12px; }
Since the Pro version of the theme is WooCommerce Ready and comes with WooCommerce Options as well as many other additional-features I suggest you consider upgrading to the pro version.
Let me know if this works out!
Kind Regards,
SkandhaFebruary 11, 2022 at 7:44 pm #299540JoeMcOmber
ParticipantHi, yes it all worked out. There is one last item that I need help with. On the Cart page the colors for the UPDATE CART button make it difficult to be read. Can the font color be changed to white? Thank you very much for all of your help!
February 12, 2022 at 4:18 am #299552Skandha
Participant@joemcomber: Hello there,
Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
.woocommerce button.button:disabled[disabled] { color: #fff; }
Let me know if this works out!
Kind Regards,
SkandhaFebruary 12, 2022 at 9:44 am #299564JoeMcOmber
ParticipantAwesome! It worked. Thank you very much!
-
AuthorPosts
- The topic ‘Theme Font Used Throughout Woocommerce Checkout Are Too Small’ is closed to new replies.