I'm using a text block with the following:
<div class="marquee-container">
<div class="marquee-content">
Assistant Branch Manager | 1st Shift | Oregon, IL | BOE • Automation Technician | 3rd Shift | Hebron, IL | $28.53/hr • Converting Machine Operator | Night Shift | Crystal Lake, IL | $17.50/hr •
</div>
<div class="marquee-content">
Assistant Branch Manager | 1st Shift | Oregon, IL | BOE • Automation Technician | 3rd Shift | Hebron, IL | $28.53/hr • Converting Machine Operator | Night Shift | Crystal Lake, IL | $17.50/hr •
</div>
</div>
And I've placed the following in the Custom CSS area under Style:
.marquee-container {
overflow: hidden; / Hides text outside the box /
white-space: nowrap; / Forces text into a single line /
background: #60BA47;
color: #ffffff;
font-size: 16px;
padding: 10px 0;
}
.marquee-content {
display: inline-block;
animation-name: modern-marquee;
animation-duration: 15s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@keyframes modern-marquee {
0% { transform: translateX(0); }
100% { transform: translateX(-100%); }
}
The text is not scrolling at the top of the homepage https://sustainable.fortifydev.com/
I've tried placing the CSS in Page Setting->Page CSS->Custom CSS and that doesn't work either. In that scenario, no formating is displayed.
I've tested this code in https://www.w3schools.com/css/tryit.asp?filename=trycss3_animation1 and it works.