The current .css at www.gunownersofcanada.ca/css.php?...
says
Any chance we could get rid of that "text-decoration:none;"
or instead perhaps changing color:rgb(0, 0, 0); to color:rgb(80, 80, 80);
so we can see hyperlinks in text, without having to move the mouse over every word, or 'reply with quote' to spot it.
Note color:rgb(80, 80, 80); is still almost black, but if you have good eyes you have a hope of spotting the difference.
i.e. without "text-decoration:none;"
The rain in Spain falls mainly on the plain.
would look like
The rain in Spain falls mainly on the plain.
or whatever the browser defaults/settings are for hyperlinks.
says
body a {
color:rgb(0, 0, 0);
text-decoration:none;
}
body a:hover,
body a:hover .time,
body a:hover .shade,
body a:hover .understate {
color:rgb(153, 153, 153);
text-decoration:underline;
}
color:rgb(0, 0, 0);
text-decoration:none;
}
body a:hover,
body a:hover .time,
body a:hover .shade,
body a:hover .understate {
color:rgb(153, 153, 153);
text-decoration:underline;
}
Any chance we could get rid of that "text-decoration:none;"
or instead perhaps changing color:rgb(0, 0, 0); to color:rgb(80, 80, 80);
so we can see hyperlinks in text, without having to move the mouse over every word, or 'reply with quote' to spot it.
Note color:rgb(80, 80, 80); is still almost black, but if you have good eyes you have a hope of spotting the difference.
i.e. without "text-decoration:none;"
The rain in Spain falls mainly on the plain.
would look like
The rain in Spain falls mainly on the plain.
or whatever the browser defaults/settings are for hyperlinks.
Comment