John-Paul
(John-Paul)
1
Hello,
I need a few things changing for my pricing table.
-
Everything in the font Instrument Sans. It is a Google font, so it should be possible.
-
To add space/margin padding below each title and its caption.
-
To to change the font size of each column title for mobile only
Max
3
Hi there, @John-Paul 
Sure, I’ll be happy to help!
- This CSS code will help you change the font of the widget:
* {
font-family: Instrument Sans;
}
- Add spacing between the title and caption:
.es-title {
padding-bottom: 10px;
}
- Change size of the column titles on mobile:
@media (max-width: 500px) {
.es-title {
font-size: 15px;
}
}
Please try it out and let me know if it helped 
1 Like