Limit charcters title - The Grid

Hi,

I wonder if it would be possible to limit the title to a certain amouont of characters in The Grid?

I know it is possible in Essential Grid but it´s not an option for me to change plugin at the moment.
I have read a comment on Codecanyon about this issue but the author refer to the support forum, and I don´t want to buy a licence that I don´t need for anything else than this.

Hi @Millvi,

That could be achieved with the custom CSS, please try adding this custom CSS under Theme Options > CSS:

h2.tg-item-title {
  width: 150px;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

For more information, please take a look at this:

Hope it helps :slight_smile:

Thank you!

You are most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.