- This topic has 6 replies, 2 voices, and was last updated 13 years, 1 month ago by .
Viewing 7 posts - 1 through 7 (of 7 total)
Viewing 7 posts - 1 through 7 (of 7 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › WP eStore General Questions › Change text size for terms and conditions
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.