Can I add running text on motion theme?

Can someone tell me if this is possible to add moving text. I am using motion as a theme and this is my site - https://8762e7-67.myshopify.com/

  • Here is the solution for you @Monkatauua
  • Please follow these steps:

  • Then find the theme.css file.
  • Then add the following code at the end of the file and press ‘Save’ to save it.
#HeaderWrapper {
  max-width: 100% !important;
  overflow: hidden !important;
}

.announcement {
  white-space: nowrap !important;
  overflow: hidden !important;
  display: inline-block !important;
  animation: marquee 10s linear infinite !important;
}

.announcement span {
  display: inline-block !important;
}

@keyframes announcement {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
  • Please press ‘Like’ and mark it as ‘Solution’ if you find it helpful. Thank you.

I did it but can the background be invisible (now its black)

.announcement {
     background: none !important;
}