Text marquee wrapping

Hello,
I have a text marquee at the top of this page, but on tablet and mobile devices, the text wraps onto 2 lines, which I don’t want. I would like it to stay all on one line as it does on the desktop. Please advise on the best way to achieve this. Thank you.

https://lbylfilms.net/homepage/

Hi @Jennine,

Thanks for writing in! You can utilized the method used on this article:

On your Text element, insert a custom Inline CSS like:

$el.x-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

This should prevent the text from moving to the next line.

Best Regards.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.