How To Limit The Number Of Characters In SP Kindergarten Events - Question | JoomShaper

How To Limit The Number Of Characters In SP Kindergarten Events

H

Heviland

Extension 3 years ago

Hi, write plz how to limit the number of characters in SP Kindergarten Events ?

0
1 Answers
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #15938

Hi there!

Did you mean details of events on the Event listing page?

I have visited your given link, and there was no details though.

https://prnt.sc/129cik8

Here is sample code you can put in your custom CSS:

.sp-kidzy-event .event-description .details {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    max-height: 100px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

Here, -webkit-line-clamp: 2; you can use the nomber of line you want to show.

Hope this helps anyways.

Best Regards

0