Open darrylsyms opened 2 years ago
This event is somewhat unpredictable. Sometimes it happens inside a message thread, but it almost always happens when a new thread is created.
You can replicate this by starting a new thread in the app. The first message will be sent inside a <span>
, and the second will be sent inside a <p>
. Please see video:
You should immediately notice the different size in font, which reflects the CSS styling of the HTML renderer. The same applies in BB Platform.
The first message was sent on the website and is naturally wrapped in
<p>
tags. The second message was send on the app, and is wrapped in<span>
tags. This inconsistency presents styling issues when viewing messages on both the website and app. Text wrapped within<p>
tags is larger than text wrapped in<span>
tags.The solution is simple. Within the app, messages should always be wrapped in
<p>
tags, not<span>
tags!The text size difference is much clearer inside the app: