Ticker Code - I'm Using under Audio Demo

<center>
<div class="ticker-wrap">
  <div class="ticker">
    <span>๐ŸŽบ New Hit Single out now: Change is te Only Constant โ€” Listen on Apple, Spotify, YouTube, Amazon ๐ŸŽถ</span>
  </div>
</div>

<style>
.ticker-wrap {
  width: 350px; 
  background: orange; 
  overflow: hidden; 
  white-space: nowrap; 
  box-sizing: border-box;
  border-radius: 7px;   /* ๐Ÿ‘ˆ Rounded corners */
}

.ticker {
  display: inline-block;
  padding-left: 100%; /* start off screen */
  animation: ticker 35s linear infinite;
}

.ticker span {
  font: 16px Arial, sans-serif;
  color: black;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
</style>
</center>

For me this is working great! :slight_smile: WindyTown.com. Not going to do 80 recordings too busy - just 5 or soโ€ฆ

Doesnโ€™t Work under Mobile - Too much CSS code to addโ€ฆ

Banner seems fine on Mobile, perhaps you need to tweak the rest of your layoutโ€ฆ