Dandello Forum AdministratorYaBB Modder Offline I love YaBB 2.7! Posts: 2260 Location: The Land of YaBB Joined: Feb 12th, 2014 Gender: Mood: Annoyed Zodiac sign: Re: That blasted Marquee tag Reply #4 - Oct 26th, 2017 at 12:57pm Mark & QuoteQuote Some of the tags in the css aren't as well supported as they might be. Win Safari ignores half the instructions - like speed and direction. But, then Win Safari is obsolete, too. Perfection is not possible. Excellence, however, is excellent. WWW IP Logged
Derek Bullock New Member Offline I Love YaBB! Posts: 49 Joined: Feb 12th, 2014 Gender: Mood: Frustrated Zodiac sign: Re: That blasted Marquee tag Reply #3 - Oct 17th, 2017 at 7:13am Mark & QuoteQuote Using iPad and working on Safari but not Firefox App. IP Logged
Dandello Forum Administrator Offline I love YaBB 2.7! Posts: 2260 Location: The Land of YaBB Joined: Feb 12th, 2014 Gender: Mood: Annoyed Zodiac sign: Re: That blasted Marquee tag Reply #2 - Dec 5th, 2015 at 8:20pm Mark & QuoteQuote I'm 99% cure it's now working in Safari (well, newer versions of Safari). In your .css files add Code (CSS).marquee { width: 100%; margin: 0 auto; white-space: nowrap; overflow: hidden; box-sizing: border-box; } .marquee span { display: inline-block; padding-left: 100%; /* show the marquee just outside the div */ -webkit-animation: marquee 15s linear infinite; animation: marquee 15s linear infinite; } .marquee span:hover { animation-play-state: paused; -webkit-animation-play-state: paused; } /* Make it move */ @keyframes marquee { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } } @-webkit-keyframes marquee { 0% { -webkit-transform: translate(0, 0); } 100% { -webkit-transform: translate(-100%, 0); } } In YaBBC.pm find Code (Perl) $message =~ s/( | )*\[move\](.*?)\[\/move\]/<marquee>$2<\/marquee>/isgm; replace with:Code (Perl) $message =~ s/( | )*\[move\](.*?)\[\/move\]/<div class="marquee"><span>$2<\/span><\/div>/isgm; Note - there are some minority browsers out there this has NOT been tested on. Perfection is not possible. Excellence, however, is excellent. WWW IP Logged
Dandello Forum Administrator Offline I love YaBB 2.7! Posts: 2260 Location: The Land of YaBB Joined: Feb 12th, 2014 Gender: Mood: Annoyed Zodiac sign: Re: That blasted Marquee tag Reply #1 - Dec 5th, 2015 at 4:06pm Mark & QuoteQuote Or use a browser other than Safari/Opera. Perfection is not possible. Excellence, however, is excellent. WWW IP Logged
Dandello Forum Administrator Offline I love YaBB 2.7! Posts: 2260 Location: The Land of YaBB Joined: Feb 12th, 2014 Gender: Mood: Annoyed Zodiac sign: That blasted Marquee tag Dec 5th, 2015 at 3:52pm Mark & QuoteQuote Finally found a css solution for the deprecated marquee tag.Marquee Test If it doesn't work- reload the css file. Perfection is not possible. Excellence, however, is excellent. WWW IP Logged