Page 2 of 10
Posted: Tue 19. Jun 2007, 17:57
by flip-flop
The disadvantage of animated gifs as menu bullets is that there is no way to let them slide back when you leave the menu item, is there?
Yes you are right. Without JS I don´t see a chance to do so.
Knut
Posted: Tue 19. Jun 2007, 21:15
by Niedzielan
flip-flop wrote:Hi, since V1.27 you can use this "Multiple setection".
Knut
Aah, I'm still running v1.2.6

bullet problem
Posted: Thu 21. Jun 2007, 16:32
by macmukka
I am using Nav list:-
{NAV_LIST_UL:F,2,2,,act_path,active}
and need help with bullets on the top level of the selected path.
I have this:-
and need it so that when items on the second level are clicked/selected and the page is loaded. that the arrow (bullet) on Washrooms points downward.
If only Washrooms was selected the following would happen:-
This is the state I require for all items under the first level.
Anyone help?
Which CSS do I need to create alter - I have tried a few things but nothing works.
thanks
Posted: Sun 24. Jun 2007, 18:21
by Niedzielan
Hi Knut,
I've managed to update the site to the latest version. When I now use your {NAV_LIST_UL:F,ID,,act_path,active} line I get an error:
Fatal error: Call to undefined function: css_list_top() in /.../phpwcms/include/inc_front/content.func.inc.php on line 444
Can you help me here?
Posted: Sun 24. Jun 2007, 20:13
by flip-flop
Hi,
the system is running well?
I think that isn´t a problem of this navi function.
All files updated via FTP?
Fatal error: Call to undefined function: css_list_top() in /.../phpwcms/include/inc_front/content.func.inc.php on line 444
V1.33: I can´t find a call to css_list_top in the file content.func.inc.php on line 444!!!
Knut
Posted: Mon 25. Jun 2007, 13:49
by Niedzielan
---
Posted: Mon 25. Jun 2007, 18:47
by DeXXus
Niedzielan wrote:Hi Knut,
I've managed to update the site to the latest version. When I now use your {NAV_LIST_UL:F,ID,,act_path,active} line I get an error:
Fatal error: Call to undefined function: css_list_top() in /.../phpwcms/include/inc_front/content.func.inc.php on line 444
Can you help me here?
css_list_top was in versions
prior to 1.28 so it would seem your upgrade to the "latest" is not complete!
Posted: Wed 27. Jun 2007, 08:44
by Niedzielan
DeXXus wrote:Niedzielan wrote:Hi Knut,
I've managed to update the site to the latest version. When I now use your {NAV_LIST_UL:F,ID,,act_path,active} line I get an error:
Fatal error: Call to undefined function: css_list_top() in /.../phpwcms/include/inc_front/content.func.inc.php on line 444
Can you help me here?
css_list_top was in versions
prior to 1.28 so it would seem your upgrade to the "latest" is not complete!
You're right, I forgot that I didn't overwright the content.func.inc.php file, because there is some module code (galerix, calendar) in it that I put in there later. Problem solved. thnx
Posted: Thu 28. Jun 2007, 15:23
by StudioZ
I am working on a site structure which is structured as this one:
01
02
-- 0201
-- -- 020101
-- 0202
-- 0203
03
So, for the horizontal menu
this is what I have showing:
01 | 02 | 03
What I need: is an autohide function, to be able to show the vertical menu ONLY when subsections exists (as for section 02). And this, without having to create multiple templates, and calling different "ID levels Starts"
Does this makes sense or maybe there is something I overlooked.
Cheers,
Yves
Posted: Thu 28. Jun 2007, 15:51
by pepe
From flip-flops NAV_LIST_UL-almanach :
http://www.phpwcms.de/forum/viewtopic.php?t=14273
.
.
.
Level lift for the vertical navigation, beginning at the first level behind [Ebene02]:
Code:
[PHP]
if(isset($GLOBALS['LEVEL_ID'][1])) {
$level_id = $GLOBALS['LEVEL_ID'][1];
echo '<div class="nlu_navi1">'.LF;
echo '
{NAV_LIST_UL:F,'.$level_id.',,act_path,active}';
echo '</div>';
}
[/PHP]
Where LEVEL_ID'][X] is the level.
.
.
.
Posted: Thu 28. Jun 2007, 16:13
by StudioZ
Hey Pepe
You made my day and more
I did really missed something important.
BTW:
My gratitude and thanks to Flip-Flop for creating this great RT and Oliver for supporting and more and Pepe for waking me up
Cheers,
Yves
Posted: Thu 28. Jun 2007, 16:39
by pepe
Good
morning Yves
Nice to "hear", that you are working on new websites again... it's the right solution!
A real man never gives up! NEVER EVER !!!
Posted: Thu 28. Jun 2007, 17:03
by StudioZ
Sorry guys. A little off topic here, but...
You touched me Pepe

It's either one or the other ... ?
If ever I am not a real man...
I might just simply be a real megalomaniac

Anyhow... with the fundraising and upcoming features
my head is simply filled by phpwcms projects...
I am taking down a lot of notes these days
Take care and see you soon
Yves
Hallo
Posted: Wed 11. Jul 2007, 12:02
by birolkab
Hallo
ich habe ein Problem bei meiner Menu leiste. Ich möchte das die erste zweite und dreite ebene untereinander beleibt. Bei mir verschiebt sich das nach rechts.
http://www.guvenli-araba-satisi.com
Bitte um hilfe
Posted: Wed 11. Jul 2007, 12:57
by flip-flop
Hi,
please write in engl. language. -> phpwcms Support English
Your problem:
1. ----------------------
.nlu_navi1 ul {
margin: 0 0 0 10px; !!!!!!
-> That isn´t the best idea. If you want to position the menue please wrap it with a div.
E.g.: <div class="menue_pos"><div class="nlu_navi1"> ............ </div></div>
2. ----------------------
/* ++ background color; url of the image; image adjust e.g. left gap 10px */
/* ++ Hintergrundfarbe; URL der Grafik ; Grafik einrücken z.B. 10px */
background: #81909F url(../../img/article/navi1_norm.gif) 10px 1px no-repeat;
/* ++ Text adjust e.g. upper gap and left gap 25px */
/* ++ Text justieren 1px oben und 25px von links */
padding: 1px 0 0 25px;
-> And so on ..........
Please read the the css file again. You will find your answer in the comments.
Knut