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 ![]()
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 ![]()
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 ![]()
Check it out and let me know if you like what you see ![]()
2 Likes
