Website Text Bug

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.

6ef6f36109629b2e09ae3a00677bfdb2.png


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.

bdede16d7b563c9c05a4e8cf801838c3.png


Can be fixed with
Code:
xenOverlay .formOverlay a.button {
color: rgb(255, 255, 255);
}
 
Top