Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Please sign up or log in to edit the wiki.

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
#mw-header-container {
  /* Set animation properties */
  animation: scroll-background infinite linear;
  animation-duration: 60s; /* Adjust animation duration as needed */
}

/* Define the animation */
@keyframes scroll-background {
  from { background-position: 0px; }
  to { background-position: -100vw; } /* Adjust distance for seamless loop */
}