Archived topic
wasp-card title length
5 replies · Started by Philippe on April 25, 2022
Hello,
I made a homepage with the latest posts of several categories, in these lists of posts, the title is truncated, how can I make the word count of wpsp-card longer?
see the page here
Many thanks
Phil
Hi there,
go to Customizer > Additional CSS - and DELETE this CSS Rule:
.generate-columns-container article .entry-header .entry-title, .wp-show-posts article .wp-show-posts-entry-title {
line-height: 2.5ex;
height: 5ex;
overflow: hidden;
text-overflow: ellipsis;
}
Hi,
Many thanks David, but i don't have this css rules in customizer
what can i do more ?
best regards
Phil
Are you sure? I cans see this on your site:
/* titre widget citation */
.generate-columns-container article .entry-header .entry-title, .wp-show-posts article .wp-show-posts-entry-title {
line-height: 2.5ex;
height: auto;
overflow: visible;
text-overflow: ellipsis;
}
And its being loaded by the Customizer > Additional CSS
Hi,
the css rule wasn't in customizer, then i've copied your rule in customizer and i've modify "overflow:hidden" by "overflow:visible", and now all is ok for me
many thanks
Phil
Glad to hear that