Custom Align on Head Column

I’m trying to figure out how to Left align the title in the Head Column (the text that says “Additional Licenses”) as well as v-align it to the bottom, so it appears directly above the first row. Is that possible?

Hi @Matt_Jeffers, welcome to our Community :slightly_smiling_face:

While there is no such a functionality in the widget editor directly, we’ll be happy to provide you with a special CSS code for your request. Please bear with me for some time while the devs work on it :folded_hands:

Stay tuned!

Hello! Came back to bring you a CSS from the devs for your case:

.es-head-column-container .es-title {
  text-align: left;
}

.es-head-column-container .es-title-container {
  grid-area: 4 / 1 !important;
  padding-top: 0;
  padding-bottom: 0;
}

It needs to be added to the Appearance → Custom CSS section :raising_hands:

Check it out and let me know if you like what you see :slightly_smiling_face:

2 Likes