The Omni Group Forums

The Omni Group Forums (http://forums.omnigroup.com/index.php)
-   OmniWeb General (http://forums.omnigroup.com/forumdisplay.php?f=8)
-   -   How to disable 'marquee'? (http://forums.omnigroup.com/showthread.php?t=4203)

mockman 2007-07-16 09:29 PM

How to disable 'marquee'?
 
I hope this hasn't been covered before. I looked but couldn't find anything.

Is it possible to disable the 'marquee' and 'blink' tags when using OmniWeb?

I am at a page that uses this and I find that I cannot read the page with this blasted scrolling going on.

In Camino, there is a hidden preference to disable these tags. I am wondering (hoping) that some such facility exists with OmniWeb as well.

troyb 2007-07-18 03:37 PM

There isn't (nor a webkit hidden preference that a know of). The <BLINK> tag shouldn't work in OmniWeb or any other WebKit based browser. Marquee however does work, sorry about that :)

philonous 2007-07-19 03:06 PM

Would hiding the status bar with command-/ help?

troyb 2007-07-19 03:39 PM

[URL="http://www.omnigroup.com/ftp/pub/outgoing/troyforum/marquee.html"]This[/URL] should answer your question. :)

Floach 2007-07-19 05:23 PM

[QUOTE=troyb][URL="http://www.omnigroup.com/ftp/pub/outgoing/troyforum/marquee.html"]This[/URL] should answer your question. :)[/QUOTE]

Haha. Awful.

philonous 2007-07-22 01:04 PM

[QUOTE=troyb][URL="http://www.omnigroup.com/ftp/pub/outgoing/troyforum/marquee.html"]This[/URL] should answer your question. :)[/QUOTE]

Ah. Thank you for the clarification. I obviously misunderstood what the marquee is. What the hell is the term for the text that used to scroll in the status bar of browsers like Firefox? Not that it matter, but...

:)

P

troyb 2007-07-22 02:25 PM

They create those with JavaScript. I'm not sure if there's a setting to get it to marquee or if it just does that when the string is too long though. (I'm guessing it's the latter.)

MacKevG 2007-07-22 03:28 PM

[QUOTE=troyb][URL="http://www.omnigroup.com/ftp/pub/outgoing/troyforum/marquee.html"]This[/URL] should answer your question. :)[/QUOTE]

a big fat rofl on that one !!!

elliottcable 2007-07-23 10:31 PM

I'm not sure if this works in OmniWeb, but serverside (or client side with client CSS or creammonkey or something) this works to disable marquee tags:

SASS:
[CODE] marquee
// Webkit-specific, to disable marquee
overflow-x: inherit
overflow-y: inherit
// Supposedly mozilla specific, need to test this
-moz-binding: none
overflow: auto
display: block[/CODE]

CSS:
[CODE]html marquee { overflow-x: inherit; overflow-y: inherit; -moz-binding: none; overflow: auto; display: block; }[/CODE]

troyb 2007-07-25 03:17 PM

Looks like the CSS works on my example above.


All times are GMT -8. The time now is 02:25 PM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.