Re: URL In Infobox Causes Rows to Flyout
Hi John,
I actually think your problem is with the table where the logo image in there is too wide too.
Try:
Copy to clipboard
.infobox * { word-break: break-word; /* to break the long URLs - Chrome specific */ max-width: 100% !important; width: auto !important; }
That should cause everything inside the .infobox behave... 😉
Also see this article: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/