[Resolved] How to increase the number of words in titles?

Home Forums Support [Resolved] How to increase the number of words in titles?

Home Forums Support How to increase the number of words in titles?

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1293112
    Stephane

    Hi there,

    Some titles are cut. How can the word (or character) limit in titles be increased?

    eg. https://imgur.com/a/KP3CdPa

    Regards

    #1293300
    David
    Staff
    Customer Support

    Hi there,

    the Dispatch site trims the titles using CSS.
    Go to Customizer > Additional CSS – and DELETE this block of code:

    .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;
    }
    #1301067
    Stephane

    Thx David ๐Ÿ™‚
    It works well!

    #1301533
    David
    Staff
    Customer Support

    You’re welcome

    #1821872
    Ella

    Hi David, can I just jump on Stephane’s question and ask if there’s code you can add to instead have “…” on the titles if the titles are longer than what they display?

    I think showing the full title on all of them looks too long (for my site anyway) and some titles are only really longer for google search. Having some way to indicate it’s not the full title and they just need to click on to read the full title would therefore be the perfect solution.

    Let me know if this is possible please. Thanks!

    #1821918
    Leo
    Staff
    Customer Support

    Give this a shot:

    .generate-columns-container article .entry-header .entry-title::after,
    .wp-show-posts article .wp-show-posts-entry-title::after {
        content: "...";
    }

    Please open a new topic if this doesn’t help.

    Thanks!

    #1821955
    Ella

    Thanks for getting back to me! That’s adding dots after the titles that fit in instead of the ones that don’t. What shall I tweak it with to swap it the other way around please? ๐Ÿ™‚

    #1821964
    Leo
    Staff
    Customer Support

    Can you open a new topic and link me to the page in question?

    It’s not possible to do it conditionally I don’t think.

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘How to increase the number of words in titles?’ is closed to new replies.