okay, cool hat sogar geklappt!
also hier mal der link:
till1991.web-4-free.com/gfx4life/index.php?login
wie man sieht ist das layout scheiße... und da ist auch schon das problem (also funktionieren tut eig. alles!):
Wenn ich in der content_login.htm, die in dem ordner templates/user/ liegt, den Eingabefeldern und dem submitbutton klassen zuweise für die style.css - so wie ich es auch immer bei der loginbox gemacht habe- und sie in der style.css difiniere und die bilder auch in dem design ordner sind... wird das aussehen trotzdem nicht geändert.. schlimmer: es stehen komischerweise immernoch die links da die ich eig. mit bildern ersetzt habe .. z.B. jetzt registrieren oder so...
und auch wenn ich die content_login.htm lösche passiert nicht mal was Oo
... versteh die welt nich mehr ^^
hier mal die codes:
login.php [include/contents]
<?php
# Copyright by Manuel
# Support www.ilch.de
defined ('main') or die ( 'no direct access' );
$title = $allgAr['title'].' :: Login | Profilverwaltung | Registrierung';
$hmenu = $extented_forum_menu.'<a href="?user-login">Login</a> | <a href="?user-profil">Profilverwaltung</a> | <a href="?user-regist">Registrierung</a>'.$extented_forum_menu_sufix;
$design = new design ( $title , $hmenu);
$design->header();
$tpl = new tpl ( 'user/content_login.htm' );
if ( loggedin() ) {
if ( user_has_admin_right($menu,false) ) {
$tpl->set ( 'ADMIN', '<a class="box" href="admin.php?admin">'.$lang['adminarea'].'</a>' );
} else {
$tpl->set ( 'ADMIN', '' );
}
if ( $allgAr['Fpmf'] == 1 ) {
$erg = db_query("SELECT COUNT(id) FROM `prefix_pm` WHERE gelesen = 0 AND status < 1 AND eid = ".$_SESSION['authid']);
$check_pm = db_result($erg,0);
$nachrichten_link = '<a class="box" href="index.php?forum-privmsg">'.$lang['messages'].'</a> ('.$check_pm.')<br>';
} else {
$nachrichten_link = '';
}
$tpl->set ( 'SID' , session_id() );
$tpl->set ( 'NACHRICHTEN' , $nachrichten_link );
$tpl->set ( 'NAME', $_SESSION['authname'] );
$tpl->out (0);
$design->footer();
} else {
if (empty($_POST['login_name'])) { $_POST['login_name'] = ''; }
if (empty($_POST['login_pw'])) { $_POST['login_pw'] = ''; }
$regist = '';
if ( $allgAr['forum_regist'] == 1 ) {
$regist = ' <a href="index.php?user-regist">Regist</a>';
}
$tpl->set_ar_out ( array ( 'regist' => $regist, 'wdlink' => '?'.$allgAr['smodul'], 'PASS' => $_POST['login_pw'], 'NAME' => $_POST['login_name'] ) , 1 );
}
$design->footer();
?>
content_login.htm [include/templates/user/]
<table width="100%" border="0" cellspacing="0" cellpadding="10">
<tr>
<td>
Hallo <b>{NAME}</b>
<br />
<br />
{NACHRICHTEN}<br />
<a class="box" href="index.php?user-3">{_lang_logout}</a> | <a class="box" href="index.php?user-8">{_lang_profil}</a>
<br>
{ADMIN}
</td>
</tr>
</table>
{EXPLODE}
<table width="100%" border="0" cellspacing="0" cellpadding="10">
<tr>
<td>
<form method="POST">
<input type="text" style="margin-bottom:2px;" tabindex="1" name="name" maxlength="50" class="login_1" /><input type="submit" name="user_login_sub" value="" style="margin-top:5px; " class="login_s"/>
<br />
<input type="password" style="margin-bottom:2px;" tabindex="2" maxlength="20" name="pass" class="login_2" />
<a href="index.php?user-remind"><img src="include/designs/gfx4life_v2/login/login_4.png" width="" height=""></a><br />
<input type="hidden" name="wdlink" value="{WDLINK}" />
<br />
<a href="index.php?user-regist"><img src="include/designs/gfx4life_v2/login/login_5.png" width="" height=""></a>
</form>
</td>
</tr>
</table>
{EXPLODE}
{_lang_yourareloged}!
Auszug aus der style.css [include/designs/DESIGN/]
.login_1 /*CSS Klasse die das Eingabefeld für den Usernamen in der Loginbox definiert*/
{
color: #000000;
background:url(login/login_01.png) #111111 ;
width: 96px;
height: 19px;
font: 10px Tahoma;
border-width: 0px;
font-weight: normal;
text-decoration: none;
text-align: center;
padding-top: 3px;
}
.login_2 /*CSS Klasse die das Eingabefeld für das Passwort in der Loginbox definiert*/
{
color: #000000;
background:url(login/login_03.png) #111111 ;
width: 96px;
height: 19px;
font: 10px Tahoma;
border-width: 0px;
font-weight: normal;
text-decoration: none;
text-align: center;
padding-top: 5px;
}
.login_s /*CSS Klasse die den Submit-Button für die Loginbox definiert*/
{
background:url(login/login_02.png) ;
width:px;
height:px;
border-width: 0px;
font-weight: normal;
text-decoration: none;
}
Die bilder sind in dem designordner in einem ordner namens
login