| request: post rendering - link feedback - color? site-tag? This is a request to tweak link-formatting in posts to make it easier
to see links. It turns out all link tags use the same text color, #4D528C.
From the css (just pulling out just the relevant bits): /* vBulletin 3 CSS For Style 'RBW' (styleid: 3) */
body { background: #cfddfd; color: #4D528C; }
a:link, body_alink { color: #4D528C; }
a:visited, body_avisited { color: #4D528C; }
a:hover, a:active, body_ahover { color: #4D528C; }
Perhaps something like this? body { background: #cfddfd; color: #4D528C; }
a:link, body_alink { color: #4E8D88; }
a:visited, body_avisited { color: #884E8D; }
a:hover, a:active, body_ahover { color: #4E8D68; } |