Dear Gert,
Thank you for your question!
Nicepage does not have a built-in feature for a scrolling marquee (text running across the screen). However, you can create a similar effect using animations or adding custom HTML and CSS code to your design.
Please check the following sample below:
<div style="overflow: hidden; white-space: nowrap; width: 100%; background-color: #f4f4f4; padding: 10px;">
<span style="display: inline-block; animation: marquee 10s linear infinite; font-size: 20px; color: #333;">
Welcome to my website! This is a scrolling marquee example.
</span>
</div>
@keyframes marquee {
0% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
}
Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp
Hello Gert,
You are welcome.
Feel free to let us know if you require any assistance.
...................................................
Sincerely,
Ahmad.
Nicepage Support Team
Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

