I would like to change the text size for the terms and conditions checkbox, also more importantly to change the text size of the "you must agree to the terms and conditions" warning.
Thanks.
Ty
I would like to change the text size for the terms and conditions checkbox, also more importantly to change the text size of the "you must agree to the terms and conditions" warning.
Thanks.
Ty
Find the following block of CSS in the "wp_eStore_style.css" file:
.eStore_cart_checkout_button{
text-align:left;
}
Once you find it change it to the following:
.eStore_cart_checkout_button{
text-align:left;
font-size:20px !important;
}
You can use whatever font-size you want.
I tried editing the wp_eStore_style.css but did not see any changes on the site. I am most interested in changing the font size for the terms and conditions error message. Does it matter which cart style (fancy) I am using?
Many thanks
Ty
Post a link to the page where I can go and add a product then check your shopping cart display.
Open the "wp_eStore_style.css" file and search for the following:
.t_and_c_error {
color:#E70218;
margin:0 0 15px;
}
Once you find it change it to the following:
.t_and_c_error {
color:#E70218 !important;
font-size:18px !important;
margin:0 0 15px;
}
you can customize the font-size to whatever you like.
Thank you. Worked great.
You must log in to post.