Pricing Table CSS Help (font and margin padding)

Hello,

I need a few things changing for my pricing table.

  1. Everything in the font Instrument Sans. It is a Google font, so it should be possible.

  2. To add space/margin padding below each title and its caption.

  3. To to change the font size of each column title for mobile only

Hi there, @John-Paul :waving_hand:

Sure, I’ll be happy to help!

  1. This CSS code will help you change the font of the widget:
* {
  font-family: Instrument Sans;
}

  1. Add spacing between the title and caption:
.es-title {
  padding-bottom: 10px;
}

  1. 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 :slightly_smiling_face:

1 Like

Works great, thank you!

2 Likes

It’s my pleasure :wink: