Skip to content Skip to sidebar Skip to footer

Jquery-marquee Only Working In Firefox

I'm using jQuery-Marquee to simulate a marquee effect for a 'latest tweet' div. But it only works in Firefox. It outputs correctly in Chrome but the marquee doesn't scroll for some

Solution 1:

It looks like you're not able to apply the marquee plugin you're using to elements that are display: inline;.

Try removing the display: inline; on the <p class="tweet-text"> element or changing it to display: block;. You may have to adjust some other CSS to account for this caveat, but that should fix it.

Post a Comment for "Jquery-marquee Only Working In Firefox"