 OZOPremium join:2003-01-17 kudos:2 1 edit | reply to OZO
Re: Tuning default BBR themeRecently I've discovered that links within a forum list (e.g. in Software forum) become having light blue color again. It has happened because the structure of tables within those pages was changed (simplified a bit).
Here is a view of light blue links (default color theme):
 Light blue links
And here is view with fixed CSS scheme providing better contrast:
 Dark blue links
For those of you who needs a better contrast for the links and uses my CSS local file published in this thread earlier I may recommend to change its content. It restores dark blue links back:
/* Fixing color of links in BBR default theme: */
body center center table table a:link { color: #008 !important; }
body center center table table a:visited { color: #00C !important; }
body center center table table a:active { color: #D00 !important; }
body center center table table a:hover { color: #000 !important; }
/* Fixing color of title bars in BBR default theme: */
body center center table table table td {background-color: #F4F4F4; !important; }
body center center table table table#titlebarA1 td {background-color: transparent; !important; }
/* Fixing BBR blockquote style: */
body center center table table div.bquote {
color: black !important;
/* background: white !important; */
/* border-style: dotted !important; */
}
Of cause the best and right way to adjust color scheme would be to use classes here. But it totally depends on the developer of the site. So far I still use the current fix.
I'll keep you updated if something will be changed again.
-- Keep it simple, it'll become complex by itself... |
 Mele20Premium join:2001-06-05 Hilo, HI kudos:4 1 edit | Do you happen to know why the default theme does not honor the user's link colors? It used to. I haven't used it in years though. But with the recent changes and the garish, very hard on the eyes, way too much red color (a little is fine more is not OK) of the Candian theme I have used for years, I decided to try the default theme again as I always liked it and there is not another theme that I can stand. I think all the themes are really ugly except Canadian (until these changes) and default.
But when I tried default yesterday, it would not honor my link colors in Fx and would only do so in IE if I lost all frames here. How would I get the default theme to honor my chosen link colors? (I don't want any blue. I use green and purple as my link colors and those are honored in all browsers using the Canadian theme).
BTW, I can't see any difference at all in the link blue color that you show in your screenshots. They are very light, almost impossible to read and in fuzzy font, not true font, on both your screenshots. -- "The same ferocity that our founders devoted to protect the freedom and independence of the press is now appropriate for our defense of the freedom of the internet. The stakes are the same: the survival of our Republic". Al Gore, The Assault on Reason |
 Grail KnightQui audet adipisciturPremium join:2003-05-31 Valhalla kudos:6 Reviews:
·Time Warner Cable
1 edit | Using Fx myself and my link colors are being used.
Do not know what your Fx issue is but you can always put some .css code in your userContent.css file and all sites will use the link colors you specify.
Edit* In case yo udo not feel like looking for the .css here is mine. Change the colors to to suit your needs.
Remember userContent.css file. ----------------------------------------------------------
* Have the color of visited links=Red, not visited links=Blue & hover=green. */ a[href]:visited { color: red !important; } a[href]:link { color: dark blue !important; } a[href]:hover { background-color: rgb(255,255,128) !important; } |