[req] Filter for barely legible text on dark bgnd
|
Jun. 01, 2009, 11:05 PM
Post: #1
|
|||
|
|||
[req] Filter for barely legible text on dark bgnd
Hello again everyone,
You know those annoying sites where they have something like grey text on a brown background, or something like that? I really have no idea why they do it, seeing as they are barely legible. Is there a filter or method for forcing the style to something like white text on the same background, or maybe black text on a white background? I appreciate and doubt, however, that a generic method could work for all sites. All I do at the moment in Firefox, is select 'No style' from the dropdown 'View' and 'Page Style' menus, but that usually breaks the page generally. Thanks for any wisdom, Lee |
|||
Jun. 02, 2009, 12:17 AM
Post: #2
|
|||
|
|||
RE: [req] Filter for barely legible text on dark bgnd | |||
Jun. 02, 2009, 01:24 AM
(This post was last modified: Jun. 02, 2009 01:26 AM by lnminente.)
Post: #3
|
|||
|
|||
RE: [req] Filter for barely legible text on dark bgnd
Also this bookmarklet: http://www.russellbeattie.com/blog/the-z...ookmarklet
|
|||
Jun. 02, 2009, 10:20 AM
Post: #4
|
|||
|
|||
RE: [req] Filter for barely legible text on dark bgnd
i'll try the previous two post fixes later on...
but i do have a fix that i already implement for STUPID background colors that make text unreadable... i use the SAME background for ALL web pages by DISABLING "body backgrounds" with Code: Name = "Header Top Inject: User CSS - Disable Body Background [add]" then axing CSS backgrounds with Code: Name = "CSS: Remove CSS Backgrounds [add]" coupled with these Code: Name = "Dim: White Backgrounds {2.d} (modified) [add]" all coupled together, i do not get any STUPID dark text on top of a dark background... but i do, seldom, but do get white text on top of my very very faint gray background that i use on ALL web sites, there is no background differences from one site to the next for me, the entire web universe uses #EDEAD9... and when i find one, i just add it to the specific filter |
|||
Jun. 02, 2009, 10:23 AM
(This post was last modified: Jun. 02, 2009 11:00 AM by ProxRocks.)
Post: #5
|
|||
|
|||
RE: [req] Filter for barely legible text on dark bgnd
of course, prior to the #EDEAD9 fix, i used to use GreenBrowser's "reverse colors" plugin, that at least made the web page "readable"...
edit: oh, and Window's "display properties" defaults my backgrounds to #EDEAD9 if the web page itself doesn't define it... |
|||
Jun. 02, 2009, 12:01 PM
Post: #6
|
|||
|
|||
RE: [req] Filter for barely legible text on dark bgnd
Thanks very much for these helpful replies.
I will give them all a go later. It's nice to have some possibilities. Lee |
|||
Jun. 02, 2009, 12:18 PM
Post: #7
|
|||
|
|||
RE: [req] Filter for barely legible text on dark bgnd
not sure what browser you are using, but if you are using GreenBrowser, the bookmarklets %20's need replaced with spaces ( ) and the %22's need replaced with quotes (") for it to work as a GB plugin...
that's a nice addin to my plugin bar, i'm still fiddling with Siamese's filters, as i prefer the plugin bar to be a 'last resort' and would rather have Proxo do everything "for me"... |
|||
Jun. 02, 2009, 01:14 PM
(This post was last modified: Jun. 02, 2009 01:14 PM by lnminente.)
Post: #8
|
|||
|
|||
RE: [req] Filter for barely legible text on dark bgnd
My favorite fix for that is using the topographic view. I remember Sidki has it in its menu.
Anyway here is the code for the bookmarklet respecting background images: Code: javascript:(function(){function%20crawl(e,%20r){if%20(e.nodeType!=1)return;var%20ch%20=%20e.firstChild;while%20(ch!=null){crawl(ch,%20r+1);ch=%20ch.nextSibling;}if(r>15)%20c='#FCC';else%20var%20c%20='#'+r.toString(16)+r.toString(16)+r.toString(16);if(r>9)e.style.color='#000';else%20e.style.color='#FFF';e.style.backgroundColor=c;e.style.borderColor=c;}crawl(document.getElementsByTagName('body')[0],%200);})() |
|||
« Next Oldest | Next Newest »
|