Change the font size of the All elements(Stocks - Table, Cards Grid)

Change the font size of the All elements(Stocks - Table, Cards Grid)

Hey @Shane_Shimizu! Welcome aboard :waving_hand:

Here’s a CSS code that’ll help you:

/* Price */
.es-price-wrapper * {
  font-size: 20px !important;
}

/* Price Change */
.tabular-nums {
  font-size: 15px;
}

/* Ticket name */
div:has(.es-avatar-container) div:nth-child(1) {
  font-size: 20px
}

/* Company name */
div:has(.es-avatar-container) div:nth-child(2) {
  font-size: 10px
}

This code can be modified by changing the px number for each element.

Add it to the SettingsCustom CSS tab and enjoy customizing :slightly_smiling_face:

1 Like