16.10.2012, 22:16
Geht auch anders:
Öffne die global.lang.php in den Ordner deutsch_du und deutsch_sie Sprachdateien und Suche nach
ändern in (zB.)
Öffne die general.js im jscripts Ordner und Suche nach
ändern in
Falls nötig in der global.css in deinem Design die Einstellungen der noch anpassen.
Öffne die global.lang.php in den Ordner deutsch_du und deutsch_sie Sprachdateien und Suche nach
PHP-Code:
$l['login_password'] = "Passwort";
ändern in (zB.)
PHP-Code:
$l['login_password'] = "Passwort eingeben";
Öffne die general.js im jscripts Ordner und Suche nach
PHP-Code:
form.insert({ bottom: new Element("input",
{
name: "quick_password",
id: "quick_login_password",
type: "password",
value: lang.password,
"class": "textbox",
onfocus: "if(this.value == '"+lang.password+"') { this.value=''; }",
onblur: "if(this.value == '') { this.value='"+lang.password+"'; }"
})
ändern in
PHP-Code:
form.insert({ bottom: new Element("input",
{
name: "quick_password",
id: "quick_login_password",
type: "text",
value: lang.password,
"class": "textbox",
onfocus: "if(this.value == '"+lang.password+"') { this.value=''; }",
onblur: "if(this.value == '') { this.value='"+lang.password+"'; }"
})
Falls nötig in der global.css in deinem Design die Einstellungen der
Code:
.textbox