Hello. URLs of authors in the Authors widget do not wrap within the Sidebar’s width. Please help me resolve this issue ASAP.

Thank you.
Unfortunately I’m developing the website using offline server (running MAMP). I’ve tried many combinations trying to target the specified class — both in custom CSS and style.css in the child theme with no effect. Any suggestions?
Unfortunately if I cannot see the issue I cannot say what it is. Please provide a screenshot if you cannot provide a link. But a bigger screenshot so I can see the url and figure out what page is this on. Is it the author box on posts? is it the author box element on pages? Provide more details so I can provide a proper solution
Thank you!
It is Authors widget in a sidebar which is shown website-wide.The widget is filtered by role of user: Author and Editor. The subtheme used is “Say what”.

The address is at localhost:8888.
Thank you — the code seems to cut the address at the Sidebar’s width. Just is case: is there an code that could show the whole address, but instead of breaking it — by breaking it into 2-3 rows?
If not, thank you for your timely help.
Hello,
If the scroll method is not working for you then you can try to use this css to limit the code from overflowing the content:
.td_top_authors .td-authors-url {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: block;
}
Thank you!