• Resolved romainkr

    (@romainkr)


    Hi,

    I’m working on a site where all the posts’ featured-pictures are the same size, to have a regular visual presentation on the homepage. Nevertheless, some of the post’s titles, being a bit long, take two lines on the homepage, which disturbs the regularity of the images.

    is there a way to have long posts’ titles truncated on the homepage to limit their size to one line ?

    If not, is there a way to increase the size of the blank zone behind all the pictures, to give enough space to the longest titles ?

    Thanks for the great theme !
    Romain

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Anders Norén

    (@anlino)

    Hi @romainkr,

    Go to Appearance → Customize → Additional CSS (the menu labels might be different in your language) and add the code below:

    .posts .post-title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    }

    That should truncate the titles to one line.

    — Anders

    Thread Starter romainkr

    (@romainkr)

    Thanks a lot Anders!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘homepage, limit description to one single line’ is closed to new replies.