The Real Keith
Adept
Noticed a few cosmetic issues on the site when I arrived here initially. Some of the text and backgrounds on logins and forms are the same color making them unreadable.
The first is the login light box that drops down viewable below on the right corner.
This can be fixed in the CUSTOM.CSS from the xenforo backend as you probably already know, maybe I can just save you some time.
Also, the logout button has the same issue, located next to cancel upon logging out, viewable below.
Can be fixed with
The first is the login light box that drops down viewable below on the right corner.
This can be fixed in the CUSTOM.CSS from the xenforo backend as you probably already know, maybe I can just save you some time.
Code:
#loginBar #loginBarHandle {
color: rgb(255, 255, 255);
Also, the logout button has the same issue, located next to cancel upon logging out, viewable below.
Can be fixed with
Code:
xenOverlay .formOverlay a.button {
color: rgb(255, 255, 255);
}