- This topic has 3 replies, 2 voices, and was last updated 3 years ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Stripe payment plugins for your WordPress site
· ·
Home › Forums › Stripe Payments Plugin › How to edit Multi-Currency botton
Tagged: Color, Font, multi-currency, Size
Hi! Is it possible to change the size, font and color of the Multi-Currency shortcode?
Please see pic below.
Yes, you should be able to use CSS tweaks to customize those elements. Below is an example to showing how.
You can add the following CSS tweaks in the Appearance -> Customize -> Additional CSS
interface of your admin dashboard to make the font size bigger and change the color to blue:
.asp-multicurr-select-container label {
font-size: 20px;
color: blue;
}
.asp-multicurr-select{
font-size: 20px;
color: blue;
}
.asp-multicurr-submit-btn {
font-size: 20px;
color: blue;
}
This is just an example. You can experiment with the different CSS values to see what you like.
Hi! Thank you for taking the time to help me. I’m still having some issues, I can’t customize any aspect of the Apply button (.asp-multicurr-submit-btn) Please see the pic below 👇
It is likely your theme is overriding the CSS. You can do the following test to isolate:
Test for Plugin and Theme Conflict Before Posting an Issue or a Bug
You can try using the !important
tag to see if you can force the CSS to take. See the example below:
.asp-multicurr-select{
font-size: 20px;
color: red;
padding: 15px !important;
}