Long Post Title Misaligning Grid with Featured Image
You have 2 options: Use ellipsis by pure CSS Add this rule to your CSS file. This will add … whenever the title is longer than its parent DIV. .FacetFeatured a{ white-space: nowrap; overflow:hidden; text-overflow:ellipsis } .FacetFeatured{ max-width: 100px // Change this to fit your grid } This is only done by using CSS. Strip … Read more