Fortress

It has been noted before that links to other pages are hard to discern. It's best to write THIS SHOT in caps as well as bold. Hard to see otherwise.
 
I don't use Edge for much of anything
I never did, I always used Chrome but when DPReview went through its most recent bout of admania, I switched to reading that with Edge with uBlock Origin installed. Solved all of my issues. I still use Chrome for non-photography related browsing.
 
Actually the colour of links, as defined in the stylesheet, is almost black:
CSS:
a {
  color: #505050;
  text-decoration: none;
}

but some links include a nested SPAN with an inline style that makes them blue:
HTML:
<span style="color: rgb(41, 105, 176)">My Flickr Photostream</span>
 
Actually the colour of links, as defined in the stylesheet, is almost black:
CSS:
a {
  color: #505050;
  text-decoration: none;
}

but some links include a nested SPAN with an inline style that makes them blue:
HTML:
<span style="color: rgb(41, 105, 176)">My Flickr Photostream</span>
Interesting. I'm not well up in that sort of thing. I wonder if @Pete Askew could tweak a setting somewhere so they're always blue?
 
I wonder if @Pete Askew could tweak a setting somewhere so they're always blue?

If @Pete Askew knows where to modify the style sheet, this would be very easy to accomplish. All he would need to do would be to add the following line to the end of the style sheet.

CSS:
a{color: #2969B0;}

Alternatively, you can install one of those browser extensions that allow you to edit individual Web site styles in the browser -- for example, Stylus or Stylish -- and set a style for realphotographersforum in that extension by applying the line of code I pasted above.
 
Back
Top