I have been unable to select the login fields for the forum. I got a larger monitor and no longer have my browser full screen. Instead of maximizing just to log in, I wrote this Greasemonkey script to fix the issue.
Code:// ==UserScript== // @name X10 forum logon forward // @namespace the364 // @description Fixes the login field stack order at smaller resoluions // @include http://x10hosting.com/forums/* // ==/UserScript== window.addListener('load', popLogin()); function popLogin(){ var userField userField = document.getElementById("navbar_username"); if(userField && userField.parentNode && userField.parentNode.parentNode){ userField.parentNode.parentNode.style.position = "relative"; userField.parentNode.parentNode.style.zIndex = 1; } }


LinkBack URL
About LinkBacks
Reply With Quote


icon below! (this is even better than "liking" a post)

