Archived topic
Headlines are cut off in the header area
3 replies · Started by Helge on July 28, 2020
The headlines of the articles are not fully shown in the two small thumbnail images in the header. The length of the headlines is adapted to the requirements of Google - as short as possible. I don't want to make the font even smaller, then the headlines are no longer readable. What to do?
Thank you very much.
Best regards, Helge
Hi there,
the Dispatch site uses this CSS which is located in Customizer > Additional CSS:
@media (min-width: 768px) {
.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;
}
}
This limits the title to a maxmium of 2 lines. Simply remove the CSS to display longer titles.
Hi David,
That worked. Thanks a lot.
Best regards, Helge
You're welcome