H0LLY Posted August 29 Share Posted August 29 Hello excellent humans, Can anyone please tell me how to fix the following issues? Empty shopping cart page: 1. Make the Continue Shopping text appear as a black button with all caps text that says: CONTINUE SHOPPING (same style as the other buttons on my website, see example below. 2. Change Shopping Cart title to all caps. Shopping cart page: 1. Make the Checkout text appear as white text on a black button in all caps CHECKOUT (same style as the other button above). 2. Change the Shopping Cart title to all caps SHOPPING CART. Many thanks. Link to comment
Solution Lesum Posted August 29 Solution Share Posted August 29 @H0LLY Hi! You can add this code under Website > Pages > Website Tools > Custom CSS #cart .sqs-button-element--secondary.cart-continue-button { background: #000; color: #fff; opacity: 1; text-transform: uppercase; } #cart h2.cart-title { text-transform: uppercase; } #cart .cart-checkout { display: flex !important; justify-content: flex-end; align-items: flex-end; } #cart .sqs-button-element--primary.cart-checkout-button { background: #000; color: #fff; text-transform: uppercase; width: 155px; } @media screen and (max-width: 767px) { #cart .cart-checkout { display: flex !important; justify-content: center; align-items: center; } } H0LLY 1 If my comments were useful, please like or mark my solution as answer so others can scroll to it quickly. Sam Web Developer & Digital Designer ☕ Did you find my contribution helpful? Buy me a coffee? Link to comment
H0LLY Posted August 30 Author Share Posted August 30 Thank you so much, Sam! You are awesome! On the shopping cart page is it possible to change the Subtotal text to all caps too? Link to comment
Lesum Posted August 30 Share Posted August 30 @H0LLY Hi! You can add this to change the Subtotal text to all caps: #cart .cart-subtotal-label { text-transform: uppercase; } H0LLY 1 If my comments were useful, please like or mark my solution as answer so others can scroll to it quickly. Sam Web Developer & Digital Designer ☕ Did you find my contribution helpful? Buy me a coffee? Link to comment
H0LLY Posted Wednesday at 12:28 AM Author Share Posted Wednesday at 12:28 AM You are the GREATEST - thank you so much, Sam! Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment