IndigoBolt11 Posted June 23, 2020 Posted June 23, 2020 Site URL: http://www.thehappyplaceschool.com/ I want to change the word quantity for one of my products to the word month- is that possible with custom css?
tuanphan Posted June 23, 2020 Posted June 23, 2020 Add to Make a payment page Settings > Advanced > Header .quantity-label { visibility: hidden; } .quantity-label:before { visibility: visible; content: "Month"; text-align: center; position: absolute; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
IndigoBolt11 Posted June 24, 2020 Author Posted June 24, 2020 11 hours ago, tuanphan said: Add to Make a payment page Settings > Advanced > Header .quantity-label { visibility: hidden; } .quantity-label:before { visibility: visible; content: "Month"; text-align: center; position: absolute; } Thank you! I put this there but it did not change the word quantity to month!
tuanphan Posted June 25, 2020 Posted June 25, 2020 On 6/24/2020 at 7:04 AM, IndigoBolt11 said: Thank you! I put this there but it did not change the word quantity to month! ah sorry, forgot, use this code <style> .quantity-label { visibility: hidden; } .quantity-label:before { visibility: visible; content: "Month"; text-align: center; position: absolute; } </style> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
IndigoBolt11 Posted June 29, 2020 Author Posted June 29, 2020 On 6/25/2020 at 3:42 AM, tuanphan said: ah sorry, forgot, use this code <style> .quantity-label { visibility: hidden; } .quantity-label:before { visibility: visible; content: "Month"; text-align: center; position: absolute; } </style> When I put in that code I get a syntax error @tuanphan
rwp Posted June 29, 2020 Posted June 29, 2020 Do not use style tags in the custom CSS area, that is only needed in the individual page code injection section.
IndigoBolt11 Posted June 29, 2020 Author Posted June 29, 2020 10 minutes ago, rwp said: Do not use style tags in the custom CSS area, that is only needed in the individual page code injection section. Ah great got it thank you!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.