• FiWeBelize

    (@fiwebelize)


    site: fiwebelize.com
    running: Customizr Free

    Trying to figure out if there is a way to make the excerpts on the page that lists the posts wrap and fill the width of the column. Currently, it only has the option to do Top, Bottom, Left or Right.

    I’d like to set it up where the image stays the same size but the text flows to the bottom of the image.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,

    We can limit the excerpt using custom CSS code. The below code will limit the blog content line at 3 but you have different numbers of tags in the article that’s why the content area is not looking equal to image height.

    Add the following custom CSS to customize-> Additional CSS

    .blog section.entry-summary p {
       display: -webkit-box;
       -webkit-line-clamp: 3;
       -webkit-box-orient: vertical;
       overflow: hidden;
       text-overflow: ellipsis;
    }

    Hope it helps and let me know if you require any further assistance.

    Thread Starter FiWeBelize

    (@fiwebelize)

    Actually, I would like for the text that goes past the image to wrap around it.
    The way it looks lie right now is as if there are two columns, one for the text and one for the image.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Wrapping Excerpt’ is closed to new replies.