HTML/PHP/AJAX/JS - Boczne menu
Kn3d3ls - 18-10-2008, 15:16 Temat postu: Boczne menu Witam
1)Proszę o pomoc w wyrównaniu bocznego menu, oraz przesunięciu linków (jak na obrazku)
2) Jak zrobić aby boczne menu było cały czas widoczne na forum (na każdej podstronie)
Będę bardzo wdzięczny za pomoc.
PLIK INDEX_BODY.tpl !!
Renger - 18-10-2008, 22:56
Kn3d3ls napisał/a: | 2) Jak zrobić aby boczne menu było cały czas widoczne na forum (na każdej podstronie) |
najszybszym rozwiązaniem będzie umieszczenie kodu menu w pliku overall_header.tpl jednak spowoduje to brak możliwości przesunięcia linków.
co do kodu to ja bym to zrobił tak (mam nadzieje ze się nie walnąłem w kodzie ):
To bym zamieścił na początku pliku index_body.tpl lub na koncu pliku overall_header.tpl:
Kod: | <!-- Początek menu //-->
<table width="100%" cellspacing="0" cellpadding="0" border="0" align="center">
<tr>
<td valign="top" width="145">
<table width="100%" cellspacing="0" cellpadding="0" border="0" align="left">
<tr>
<th class="catHead" height="28" colspan="0" align="center"><span class="thHead"> Nawigacja </span></th>
</tr>
<tr>
<td>
<!-- Początek modułu 1//-->
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="forumline">
<tr>
<td class="catHead" height="28" align="center"><span class="cattitle"> Forum </span></td>
</tr>
<tr>
<td height="28" align="left" class="row1">
<span class="gensmall">
<a href="{U_FAQ}" class="mainmenu"><img src="templates/TeskoGrey/images/icon_mini_faq.gif" width="12" height="13" border="0" alt="{L_FAQ}" hspace="3" />{L_FAQ}</a><br />
<a href="{U_SEARCH}" class="mainmenu"><img src="templates/TeskoGrey/images/icon_mini_search.gif" width="12" height="13" border="0" alt="{L_SEARCH}" hspace="3" />{L_SEARCH}</a><br />
<a href="{U_MEMBERLIST}" class="mainmenu"><img src="templates/TeskoGrey/images/icon_mini_members.gif" width="12" height="13" border="0" alt="{L_MEMBERLIST}" hspace="3" />{L_MEMBERLIST}</a><br />
<a href="{U_GROUP_CP}" class="mainmenu"><img src="templates/TeskoGrey/images/icon_mini_groups.gif" width="12" height="13" border="0" alt="{L_USERGROUPS}" hspace="3" />{L_USERGROUPS}</a><br />
<!-- BEGIN switch_user_logged_out -->
<a href="{U_REGISTER}" class="mainmenu"><img src="templates/TeskoGrey/images/icon_mini_register.gif" width="12" height="13" border="0" alt="{L_REGISTER}" hspace="3" />{L_REGISTER}</a>
<!-- END switch_user_logged_out --><br>
</span>
</td>
</tr>
</table>
<!-- Koniec modułu 1 //-->
<!-- Początek modułu 2//-->
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="forumline">
<tr>
<td class="catHead" height="28" align="center"><span class="cattitle"> Osobiste </span></td>
</tr>
<tr>
<td height="28" align="left" class="row1">
<span class="gensmall">
<a href="{U_PROFILE}" class="mainmenu"><img src="templates/TeskoGrey/images/icon_mini_profile.gif" width="12" height="13" border="0" alt="{L_PROFILE}" hspace="3" />{L_PROFILE}</a>
<br /><a href="{U_PRIVATEMSGS}" class="mainmenu"><img src="templates/TeskoGrey/images/icon_mini_message.gif" width="12" height="13" border="0" alt="{PRIVATE_MESSAGE_INFO}" hspace="3" />PM</a>
<br /><a href="{U_LOGIN_LOGOUT}" class="mainmenu"><img src="templates/TeskoGrey/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_LOGIN_LOGOUT}" hspace="3" />{L_LOGIN_LOGOUT}</a>
</span>
</td>
</tr>
</table>
<!-- Koniec modułu 2 //-->
<!-- Początek modułu 3//-->
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="forumline">
<tr>
<td class="catHead" height="28" align="center"><span class="cattitle"> Legenda </span></td>
</tr>
<tr>
<td height="28" align="left" class="row1">
<span class="gensmall">
<img src="templates/TeskoGrey/images/folder_new.gif" alt="{L_NEW_POSTS}"/> <sup>{L_NEW_POSTS}</sup><br />
<img src="templates/TeskoGrey/images/folder.gif" alt="{L_NO_NEW_POSTS}" /> <sup>{L_NO_NEW_POSTS}</sup><br />
<img src="templates/TeskoGrey/images/folder_lock.gif" alt="{L_FORUM_LOCKED}" /> <sup>{L_FORUM_LOCKED}</sup>
</span>
</td>
</tr>
</table>
<!-- Koniec modułu 3 //-->
</td>
</tr>
</table>
</td>
<td valign="top">
<!-- koniec menu //--> |
i to na końcu pliku index_body.tpl jeżeli została użyta wersja z plikiem index_body.tpl lub na początku pliku overall_footer.tpl jeżeli została użyta wersja z plikiem overall_header.tpl:
Kod: | <!-- Początek menu //-->
</td>
</tr>
</table>
<!-- koniec menu //--> |
I to by było na tyle
|
|
|