Recently, I attempted to implement a ticker message on my website using li scroller.
However, it appears that there is a limitation on the number of characters that can be displayed in the ticker message when different font sizes are used. With a smaller font size, more characters scroll out, while with a larger font size, fewer characters are visible.
I am only utilizing one list:
<ul id="tck_msg">
<li>Welcome to my place and welcome to this nation</li>
</ul>
For example, when I use a font size of 6vh, the message displays as "Welcome to my place and welcome". However, with a font size of 2vh, the entire message "Welcome to my place and welcome to this nation" is shown.
Could anyone shed some light on why this happens?