I guess this goes in software, but if a mod feels different feel free to move it.
Anyway I'm looking to disable the "marquee" tag in Safari. I have a custom CSS set up to block adds and stuff like that, but can't figure out how to stop the marquee tags. I found some code meant for firefox, but it doesn't seem to work. Here's what I found:
Code:
/* Disable marquee */
marquee {
-moz-binding: none !important;
display: block;
height: auto !important;
}
I would still like the text to display, just not move. Anyone know how to do this?