Service Portal user profile widget Bio field is not handling lengthy stringsDescriptionOn Service Portal, under user profile widget, the Bio field is not handling lengthy strings. For a long string of bio, the text crosses over the widget border.Steps to Reproduce 1. Go to the /sp portal page3. Go to the user profile page by clicking on the top right initials icon4. Click on edit against bio filed5. Enter a very lengthy string with like 200 characters without space blanks6. Save and notice the whole length of the string will try to render in one lineWorkaroundClone the User Profile widget and edit html and css as follows: In the html section, locate the parent div of the bio section (Refer Screenshot)Add a new class to the located div - "user-details"Remove the class "user-name" from the first child (h2) corresponding to user nameIn the css section, locate the class selector, ".user-name"Update the selector to ".user-details" and the corresponding style to: .user-details { word-wrap: break-word; overflow-wrap: break-word;} Edit the User Profile page, and replace the OOB User Profile widget with the updated clone.Screenshot with widget changes underlined:Related Problem: PRB1542641