Hi Vipin,
Thank you for writing in, yes that is the limitation of Classic Pricing Table it’s not very customizable, but we can help you with custom CSS for that. To resize the title you can use this custom CSS.
/*table column title*/
.x-pricing-column > h2 {
font-size: 24px;
}
for the currency and interval, please use this
/*table column pricing and interval*/
.x-pricing-column-info .x-price {
font-size: 22px;
letter-spacing: 0;
}
You can add custom CSS on the Theme Options > CSS if you want that styling to be applied site-wide.
Or if you only want that styling to be apply on that specific page only, you can add the custom CSS in the Page > CSS area.
Now, I see on your screenshot that you needed the title and buttons to have a different color, to do that, add a unique class for each of your table columns.
e.g. for essentials column
Then add this to the Page > CSS
/*title color*/
.essentials > h2 {
color: magenta;
}
/*button color*/
.essentials a.x-btn {
background-color: magenta;
}
Feel free to change the color value, do this class and CSS for each column to have a unique color.
Hope it helps
Cheers!