Veränderte Profilansicht (Boxen)

Poldi4
hallo ihr Lieben ich habe in meinem Alten Profil mit den auswahlmöglichkeiten habe das Template hochgeladen ist alles weg habe es aber gesepichert vileicht kan mir jemand helfen

das ich das alles wieder habe aber im Neen Profil

weiß nit mehr weiter leider

und das soll dan alles nebeneinander sein
MinasMorgul
Sehr schön danke
NeLL
Ich liebe es! Vielen Dank, einfach toll. Freude

Noch eine Frage hinterher: Kann man die Signatur auch anzeigen lassen, unter "Kontaktaufnahme"?
GuenniS
Ich habe die veränderte Profilansicht anpassen wollen an mein Board.

Funktioniert irgendwie nicht.

Sehe wohl den Wald vor lauter Bäumen nicht.

Könnte sich das mal jemand ansehen was ich falsch gemacht habe?

Danke im voraus.
hammer600
hallo in der Tpl ist ein Fehler, die Admin Box muss so ausschauen.


code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
			<if(checkAdminPermissions("a_can_users_edit") || checkAdminPermissions("a_can_users_delete"))>
				<then>
					<table cellpadding="{$style['tableincellpadding']}" cellspacing="{$style['tableincellspacing']}" border="{$style['tableinborder']}" style="width: 160px" class="tableinborder">
						<tr>
							<td class="tabletitle" align="center"><span class="smallfont"><b>Administrative Optionen</b></span></td>
						</tr>
						<if(checkAdminPermissions("a_can_users_edit") && checkAdminPermissions("a_can_users_delete"))>
							<then>
								<tr>
									<td class="tablea" align="center"><span class="smallfont"><a href="acp/index.php?url=users.php%3Faction%3Dedit%26userid%3D$user_info[userid]" target="_blank">{$lang->items['LANG_MEMBERS_PROFILE_USEREDIT']}</a></span></td>
								</tr>
							</then>
						</if>
						<if(checkAdminPermissions("a_can_users_edit") && checkAdminPermissions("a_can_users_delete"))>
							<then>

								<tr>
									<td class="tableb" align="center"><span class="smallfont"><a href="acp/index.php?url=users.php%3Faction%3Ddelete%26userid%5B%5D%3D$user_info[userid]" target="_blank">{$lang->items['LANG_MEMBERS_PROFILE_USERDEL']}</a></span></td>
								</tr>
							</then>
						</if>
						<if(checkAdminPermissions("a_can_users_delete") && !checkAdminPermissions("a_can_users_edit"))>
							<then>
								<tr>
									<td class="tablea" align="center"><span class="smallfont"><a href="acp/index.php?url=users.php%3Faction%3Ddelete%26userid%5B%5D%3D$user_info[userid]" target="_blank">{$lang->items['LANG_MEMBERS_PROFILE_USERDEL']}</a></span></td>
								</tr>
							</then>
						</if>
					</table>



und nicht so.

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
			<if(checkAdminPermissions("a_can_users_edit") || checkAdminPermissions("a_can_users_delete"))>
				<then>
					<table cellpadding="{$style['tableincellpadding']}" cellspacing="{$style['tableincellspacing']}" border="{$style['tableinborder']}" style="width: 160px" class="tableinborder">
						<tr>
							<td class="tabletitle" align="center"><span class="smallfont"><b>Administrative Optionen</b></span></td>
						</tr>
						
						<if(checkAdminPermissions("a_can_users_edit") && !checkAdminPermissions("a_can_users_delete"))>
							<then>
								<tr>
									<td class="tablea" align="center"><span class="smallfont"><a href="acp/index.php?url=users.php%3Faction%3Dedit%26userid%3D$user_info[userid]" target="_blank">{$lang->items['LANG_MEMBERS_PROFILE_USEREDIT']}</a></span></td>
								</tr>
							</then>
						</if>
						<if(checkAdminPermissions("a_can_users_edit") && checkAdminPermissions("a_can_users_delete"))>
							<then>
								<tr>
									<td class="tablea" align="center"><span class="smallfont"><a href="acp/index.php?url=users.php%3Faction%3Dedit%26userid%3D$user_info[userid]" target="_blank">{$lang->items['LANG_MEMBERS_PROFILE_USEREDIT']}</a></span></td>
								</tr>
								<tr>
									<td class="tableb" align="center"><span class="smallfont"><a href="acp/index.php?url=users.php%3Faction%3Ddelete%26userid%5B%5D%3D$user_info[userid]" target="_blank">{$lang->items['LANG_MEMBERS_PROFILE_USERDEL']}</a></span></td>
								</tr>
							</then>
						</if>
						<if(checkAdminPermissions("a_can_users_delete") && !checkAdminPermissions("a_can_users_edit"))>
							<then>
								<tr>
									<td class="tablea" align="center"><span class="smallfont"><a href="acp/index.php?url=users.php%3Faction%3Ddelete%26userid%5B%5D%3D$user_info[userid]" target="_blank">{$lang->items['LANG_MEMBERS_PROFILE_USERDEL']}</a></span></td>
								</tr>
							</then>
						</if>
					</table>