MyBB.de Forum

Normale Version: Farbliche Abstimmung streikt
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Bei der REGISTRIERUNG sollten doch normalerweise die beschreibbaren Felder je nach Prüfung rot oder grün erscheinen.

Sprich ist ein benutzername vergeben würde sich das Feld "rot" färben.

Das tut es bei mir nicht. Muss ich da noch einen CSS Code irgendwo einfügen?

Hat jemand dasselbe Problem?

Gruß

Screen hängt an
In deinem Theme fehlen wohl die ganzen CSS-Eigenschaften für validation... Kopiere sie bitte aus einem anderen Theme.
Code:
.invalid_field {
    border: 1px solid #f30;
    color: #f30;
}

.valid_field {
    border: 1px solid #0c0;
}

.validation_error {
    background: url(images/invalid.gif) no-repeat center left;
    color: #f30;
    margin: 5px 0;
    padding: 5px;
    font-weight: bold;
    font-size: 11px;
    padding-left: 22px;
}

.validation_success {
    background: url(images/valid.gif) no-repeat center left;
    color: #00b200;
    margin: 5px 0;
    padding: 5px;
    font-weight: bold;
    font-size: 11px;
    padding-left: 22px;
}

.validation_loading {
    background: url(images/spinner.gif) no-repeat center left;
    color: #555;
    margin: 5px 0;
    padding: 5px;
    font-weight: bold;
    font-size: 11px;
    padding-left: 22px;
}
wo muss das rein?

in welche css datei? in der global.css zeigt sie keine wirkung
Lösche mal den Cache des Browsers, bei mir funktioniert es in deinem Forum.