Hi @usmekhan91 ,
Try adding the following code to the base.css file:
@keyframes scrollAnimation {
0% {
transform: translateX(0);
}
100% {
transform: translateX(100%);
}
}
.t4s-container {
animation: scrollAnimation 10s linear infinite;
}
Hope it works @usmekhan91