Hello,
It bothers me when stuff flashes on the screen like when my mouse goes over a post's date tag. Also, I always want to see the date tag and I don't want to have to do a mouse hover. Also, I cannot see light gray on white very well. So I made this GreaseMonkey script. Oh, and it makes the "Back to top" button always visible too.
Here is the code if you want to copy/paste or you can click the link in my site and Firefox/Greasmonkey will install it for you.
http://vbmark.com/co...programming.php
// ==UserScript== // @name AutoHotkey Forum Tweaker // @namespace http://vbmark.com/autohotkeyforumtweaker // @version 1.0 // @description Tweaks some AutoHotkey.com forum stuff. // @match http://*.autohotkey.com/board/* // @run-at document-end // @copyright 2013+, vbmark.com // ==/UserScript== addGlobalStyle('.postInfoBottom { visibility:visible; font-size: 14px; color:black; }'); addGlobalStyle('.horizontalView ul.post_controls { visibility:visible; }'); function addGlobalStyle(css) { var head, style; head = document.getElementsByTagName('head')[0]; if (!head) { return; } style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = css; head.appendChild(style); }