Make Ticker layout vertical

Add this code to the Custom CSS field on the Style tab of your Logo Showcase widget’s settings:

.rfm-marquee-container {
  --transform: rotate(90deg) !important;
}

.rfm-marquee {
  --duration: 240s !important;
}

.eapp-logo-showcase-logo-component {
  transform: rotate(-90deg);
}

.rfm-marquee-container,
.eapp-logo-showcase-logo-showcase-content {
  aspect-ratio: 1;
}

@media (max-width: 500px) {
  .rfm-marquee {
    --duration: 120s !important;
  }
}
1 Like