[Resolved] Different content title displays

Home Forums Support [Resolved] Different content title displays

Home Forums Support Different content title displays

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1375834
    horizonblue

    Hi there

    Is it possible to create edited (shorter) titles that can be pulled onto sidebars, WP Show Post lists etc? So for example, on the post, the title might be fairly long, but it could be more concise / compelling elsewhere.

    Hope this makes sense.

    Thanks for your help

    #1376089
    Leo
    Staff
    Customer Support

    Hi there,

    I’m not aware of a solution like this unfortunately. The theme itself doesn’t handle the title functionality as it’s all handled by WordPress itself.

    #1376619
    horizonblue

    That’s a shame. Thanks anyway.

    #1376770
    David
    Staff
    Customer Support

    Hi there,

    you can use this CSS method:

    .wp-show-posts article .wp-show-posts-entry-title {
        line-height: 2.5ex;
        height: 5ex;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    It will limit the title to two lines for all WP Show Posts lists.
    If you wanted that to only effect a list in the right sidebar you would change the CSS Selector to:

    #right-sidebar .wp-show-posts article .wp-show-posts-entry-title {

    #1376924
    horizonblue

    Hi David

    That’s great, I’ll try that, thanks for your help 🙂

    #1376969
    David
    Staff
    Customer Support

    You’re welcome

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.