Wrap Promoted Links in SharePoint

SharePoint promoted links are a great way to dress up your site. By default, they do not wrap to more than one row. Some of the links are hidden until you scroll right with the right arrow. This functionality makes the promoted links web part appear not good in side columns.

Below CSS will wrap the promoted links according to the width availability.

<style>
.ms-promlink-body {
    width: inherit;
}

.ms-promlink-header {
    display: none;
}
</style>

No comments: