Blog topic overlays "read more" button in Ess. grid

So I’m using essential grid to make a blog section on my home page, but the hover-over description is sometimes so long it blocks out the “read more” button

What can I do so that the hover description only shows a short summary with a … instead of the entire blog headline?

Scroll down about 2/3 to see the ess grid blogs

Hi,

To achieve that, you can add the code below in Cornerstone > CSS

.eg-essential-preview-element-1 {
    width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

Hope that helps

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.