B
Bob
I use a user style sheet, usercontent.css, that looks like this:
body {
color: #787878 !important;
}
font {
color: #787878 !important;
}
div {
color: #787878 !important;
}
p {
color: #787878 !important;
}
td {
color: #787878 !important;
}
..verdanamb {
color: #787878 !important;
}
I then use Web Developer to attach it various pages that I visit. Works
great, with some exceptions. I do this because my aging CRT monitor
hurts my eyes unless I hack down the black-white contrast on the
monitor. Will work until I can afford a new monitor.
I am looking at a webpage that is using inline styles, to whit:
<span style="color: black;">
How do I change the style sheet to change these text strings to grey?
Will this do it?
span style {
color: #787878 !important;
}
body {
color: #787878 !important;
}
font {
color: #787878 !important;
}
div {
color: #787878 !important;
}
p {
color: #787878 !important;
}
td {
color: #787878 !important;
}
..verdanamb {
color: #787878 !important;
}
I then use Web Developer to attach it various pages that I visit. Works
great, with some exceptions. I do this because my aging CRT monitor
hurts my eyes unless I hack down the black-white contrast on the
monitor. Will work until I can afford a new monitor.
I am looking at a webpage that is using inline styles, to whit:
<span style="color: black;">
How do I change the style sheet to change these text strings to grey?
Will this do it?
span style {
color: #787878 !important;
}