Long course names spill in "My Courses" list

Issue #178 resolved
Jeremy Hopkins created an issue

The list of My Courses does not handle logn course names. Either the size of that overlay needs to expand or we limit the length of text we display there. Which do you think would be better?

long-course-names.PNG

Comments (6)

  1. Info 3bits

    Best choice is limit the length.

    Use this function I discovered when fixing the wrong character in the truncated string in coursebox:

    $trunc = mb_strimwidth($summs, 0, 70, "...");

    Truncate the string maintaining the character set and add the ellipsis (or any text) at the end. All in one. Just wonderful

  2. Log in to comment