BuddyBoss truncates the course titles when displayed in the course grid, and on the default /courses/
page. If you’d like to remove the ellipsis and display the entire title, no matter how long it is, you can use the following CSS:
#page .bb-course-item-wrap .bb-course-title a {
max-height: unset;
-webkit-line-clamp: unset;
text-overflow: unset;
overflow: visible;
}