as I can extend nav_quick_links.tpl so that I these also contract and expand ???
if I get that from the file and insert this in the nav_quick_links.tpl so does not functioned
where and which files I must change
Please help
Nav Quick Links
Subject: Nav Quick Links
| nav.zip | ||
| Description: | Look this | ![]() Download |
| Filename: | nav.zip | |
| Filesize: | 625 Bytes | |
| Downloaded: | 211 Time(s) | |
Subject: Re: Nav Quick Links
Sorry, but I can't understand what your problem is... :roll:
Can you try to explain it again making some examples please?
And remember that you shouldn't bump your posts... :wink:
Can you try to explain it again making some examples please?
And remember that you shouldn't bump your posts... :wink:
Subject: Re: Nav Quick Links
Hi MG
i want to make more extract - expand menues ..........
in the quick navigation
at this time an example there are 6
to extract - expand menues
how can i make it more .....
i hope you anderstand me now ???
i want to make more extract - expand menues ..........
in the quick navigation
at this time an example there are 6
to extract - expand menues
how can i make it more .....
i hope you anderstand me now ???
Subject: Re: Nav Quick Links
This is the code you have to add:
But you have to remember to change the ID.
In this case change style_select in the code to something else... my_block for example.
You have to change the ID otherwise JavaScript is not able to locate the correct block to contract/expand.
<tr>
<th style="cursor:pointer;cursor:hand;" align="left" onclick="ShowHide('style_select','style_select2','style_select');">
<img src="{IMG_NAV_MENU_PALETTE}" alt="{L_SELECT_STYLE}" title="{L_SELECT_STYLE}" />
<a href="javascript:void(0);" title="{L_SELECT_STYLE}" style="vertical-align: top;"><b>{L_SELECT_STYLE}</b></a>
</th>
</tr>
<tr>
<td class="row5">
<div id="style_select2" style="display: none; position: relative; padding-top: 0px; padding-bottom: 0px;">
<table class="forumline-no2" width="100%" cellspacing="0" cellpadding="2" border="0">
<tr>
<td class="genmed" align="center">{STYLE_SELECT_H}</td>
</tr>
</table>
</div>
<div id="style_select" style="display: ''; position: relative;">
<script language="javascript" type="text/javascript">
<!--
tmp = 'style_select';
if(GetCookie(tmp) == '2')
{
ShowHide('style_select','style_select2','style_select');
}
//-->
</script>
</div>
</td>
</tr>
<th style="cursor:pointer;cursor:hand;" align="left" onclick="ShowHide('style_select','style_select2','style_select');">
<img src="{IMG_NAV_MENU_PALETTE}" alt="{L_SELECT_STYLE}" title="{L_SELECT_STYLE}" />
<a href="javascript:void(0);" title="{L_SELECT_STYLE}" style="vertical-align: top;"><b>{L_SELECT_STYLE}</b></a>
</th>
</tr>
<tr>
<td class="row5">
<div id="style_select2" style="display: none; position: relative; padding-top: 0px; padding-bottom: 0px;">
<table class="forumline-no2" width="100%" cellspacing="0" cellpadding="2" border="0">
<tr>
<td class="genmed" align="center">{STYLE_SELECT_H}</td>
</tr>
</table>
</div>
<div id="style_select" style="display: ''; position: relative;">
<script language="javascript" type="text/javascript">
<!--
tmp = 'style_select';
if(GetCookie(tmp) == '2')
{
ShowHide('style_select','style_select2','style_select');
}
//-->
</script>
</div>
</td>
</tr>
But you have to remember to change the ID.
In this case change style_select in the code to something else... my_block for example.
You have to change the ID otherwise JavaScript is not able to locate the correct block to contract/expand.
Subject: Re: Nav Quick Links
hi
the code that i add is an example ...........
when i copy this code in nav_quick_links.tpl so expand and extract the same menues that i also had ...........
also my question can you give me an exmplample how can i make more menues ???
and sorry i dont understand this
which files must i edit ..... and how ....
give me an example
the code that i add is an example ...........
when i copy this code in nav_quick_links.tpl so expand and extract the same menues that i also had ...........
also my question can you give me an exmplample how can i make more menues ???
and sorry i dont understand this
Quote:
which files must i edit ..... and how ....
give me an example
Subject: Re: Nav Quick Links
What I can't understand is: do you want more subcategories or do you want more menu?
In your previous post you were asking to add subcategories.
What I suggested you it is meant to add a new category there. The file you have to edit is nav_quick_links.tpl and you have only to change the ID of the block, assigning it a new name.
Try adding this and let me know.
In your previous post you were asking to add subcategories.
pepi wrote: [View Post]
What I suggested you it is meant to add a new category there. The file you have to edit is nav_quick_links.tpl and you have only to change the ID of the block, assigning it a new name.
<tr>
<th style="cursor:pointer;cursor:hand;" align="left" onclick="ShowHide('demo_menu','demo_menu2','demo_menu');">
<img src="{IMG_NAV_MENU_PALETTE}" alt="{L_SELECT_STYLE}" title="{L_SELECT_STYLE}" />
<a href="javascript:void(0);" title="{L_SELECT_STYLE}" style="vertical-align: top;"><b>{L_SELECT_STYLE}</b></a>
</th>
</tr>
<tr>
<td class="row5">
<div id="demo_menu2" style="display: none; position: relative; padding-top: 0px; padding-bottom: 0px;">
<table class="forumline-no2" width="100%" cellspacing="0" cellpadding="2" border="0">
<tr>
<td class="genmed" align="center">{STYLE_SELECT_H}</td>
</tr>
</table>
</div>
<div id="demo_menu" style="display: ''; position: relative;">
<script language="javascript" type="text/javascript">
<!--
tmp = 'demo_menu';
if(GetCookie(tmp) == '2')
{
ShowHide('demo_menu','demo_menu2','demo_menu');
}
//-->
</script>
</div>
</td>
</tr>
<th style="cursor:pointer;cursor:hand;" align="left" onclick="ShowHide('demo_menu','demo_menu2','demo_menu');">
<img src="{IMG_NAV_MENU_PALETTE}" alt="{L_SELECT_STYLE}" title="{L_SELECT_STYLE}" />
<a href="javascript:void(0);" title="{L_SELECT_STYLE}" style="vertical-align: top;"><b>{L_SELECT_STYLE}</b></a>
</th>
</tr>
<tr>
<td class="row5">
<div id="demo_menu2" style="display: none; position: relative; padding-top: 0px; padding-bottom: 0px;">
<table class="forumline-no2" width="100%" cellspacing="0" cellpadding="2" border="0">
<tr>
<td class="genmed" align="center">{STYLE_SELECT_H}</td>
</tr>
</table>
</div>
<div id="demo_menu" style="display: ''; position: relative;">
<script language="javascript" type="text/javascript">
<!--
tmp = 'demo_menu';
if(GetCookie(tmp) == '2')
{
ShowHide('demo_menu','demo_menu2','demo_menu');
}
//-->
</script>
</div>
</td>
</tr>
Try adding this and let me know.
Subject: Re: Nav Quick Links
Hi many thanks it's works
i take this codes (my example)
LOOK
greetings pepi
i take this codes (my example)
- <tr class="forumline">
- <th style="cursor:pointer;cursor:hand;" align="left" onclick="ShowHide('test_album','test_album2','test_album');">
- <table cellspacing="0" cellpadding="0" border="0">
- <tr>
- <td> </td>
- <td><a href="javascript:void(0);" title="{L_ALBUM}" style="font-weight: bold;"><b>{L_ALBUM}</b></a></td>
- </tr>
- </table>
- </th>
- </tr>
- <tr>
- <td class="row">
- <div id="test_album2" style="display: none; position: relative; padding-top: 0px; padding-bottom: 0px;">
- <table border="0" cellpadding="0" cellspacing="4" width="100%" class="forumline-no2">
- <tbody>
- <tr>
- <td width="8" align="left" valign="middle">{IMG_ARROW_RIGHT}</td>
- <td class="genmed" align="left"><a href="{U_ALBUM}">Zippo {L_ALBUM}</a></td>
- </tr>
- </table>
- </div>
- <div id="test_album" style="display: ''; position: relative;">
- <script language="javascript" type="text/javascript">
- <!--
- tmp = 'test_album';
- if(GetCookie(tmp) == '2')
- {
- ShowHide('test_album','test_album2','test_album');
- }
- //-->
- </script>
- </div>
- </td>
- </tr>
LOOK
greetings pepi
Page 1 of 1
You cannot post new topicsYou cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events
This is a "Lo-Fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by Icy Phoenix based on phpBB
Generation Time: 0.1599s (PHP: 13% SQL: 87%)
SQL queries: 12 - Debug Off - GZIP Enabled
