Hello, does anyone know how I can have continuous horizontal scrolling text from the right of the page to the left?
For example, like the text at the top of this page: https://publicofficial.co
Hello, does anyone know how I can have continuous horizontal scrolling text from the right of the page to the left?
For example, like the text at the top of this page: https://publicofficial.co
Hi
Hey @Misha another readymag user here. I found your explantion super helpful, however I am experiencing one issue. I took your advice about typing the text multiple time in a row, but eventually, the text runs out- I would imagine I would have to repeat like 100 plus time for it not to cut off. Is there anyway around this?
Hi @dennerk it sounds like in this instance a code injection element might be the better option. I’ve linked the code from this thread [marquee](How do you create marquee text?)
<div class="marquee">
<div>
<span><a href="URL HERE?">HELLO WORLD THE MESSAGE CAN BE ANY LENGTH. MESSAGE 1.</a></span>
<span><a href="URL HERE?">HELLO WORLD THE MESSAGE CAN BE ANY LENGTH. MESSAGE 2.</a></span>
</div>
</div>
<style>
body {
margin: 20px;
}
.marquee {
position: relative;
overflow: hidden;
width: 100%;
height: 25px;
}
.marquee div {
position: absolute;
display: block;
overflow: hidden;
width: 200%;
height: 30px;
animation: marquee 10s linear infinite;
}
.marquee span {
float: left;
width: 50%;
}
@keyframes marquee {
0% {
left: 0;
}
100% {
left: -100%;
}
}
</style>
Hey, I am new to coding, but would love to transform text to a different style on this animation. Is there any way to do this? Changing Font, font style, font size and so on?
Thanks!
One solution would be to insert a scrolling text GIF image made with this online tool.
Hi! You can use our preset: click Widgets - Presets - Animated widgets - Infinite running line. Then customize the text as you’d like using text settings that will pop up in the panel on the right