H! All,

First off all I would like to say that I don't know any more French than "Je n'ai comprend pas, tu parlez Anglais?? No? Tu Zut..." (and I HOPE this isn't taken wrong when I say that to a French person If you know what I mean!). And most of the time it's enough for me as a Dutch person, altough I know my Englisch, and I will try to see if someone here knows it to who can help me, cause I already mailed this to the webmaster, but he is to busy to help me, and sugested me to put it on the forum here, altough that is in French, I try to see how far I come with navigating in here, cause I also have a PHPbb Forum on one of my servers... But please every respons in here in Englisch, cause I don't understand French (and you might have seen in my only full French sentece I know!)

Well, know the problem:

I have 2 questions about a CSS and (X)HTML drop-down (vertical and
horizontal) menu wich is explained in Englisch
(http://tutorials.alsacreations.com/deroulant/) on one of the pages on
this website. I am trying to customise the vertical dropdown menu to my needs, just similar like the one located on www.henkhouben.nl/Test has. Only, you might have seen, that menu is not working 100%, and I've been working with this one for more than 1 year now, but I can't seem to fix it right! So after a long search I found this very similar menu from this website....

But there are 2 things I want to see, plain text is used, I want to put a
small image in front of the text, I tried that by adding the imgsrc-tag,
but that f*ck*d up the menu totaly (text jumps to second line and
doesn't position itself next to the image!). So after few combinations nothing works, so I turn to here (first maker of this site, but he suggested it to put it here...)? 2 questions wich I combine in 1:

Could someone tell me (or do for me) how to customise that menu so that it
contains images just like the ones I used on www.henkhouben.nl/Test (The images I've got!)?

A-sum-op:
Problem 1:
The images thereselfs next to the text (like the ones on
www.henkhouben.nl/Test ).

Problem 2:
When on www.henkhouben.nl/Test you see >-images but when you openup a menu, the image changes, and when you open up another menu (like this new menu also does, that is one of the key-features to me!), the image changes back.
Could this also be made applieable to this menu??? If so, could someone tell me (or do for me) how to customise that so it does exactly what the menu on www.henkhouben.nl/Test does???

If someone can help me with these problems I would be very glad!!!

I will place the html of my menu now in below standing box, might be simpeler for you to understand what needs to be added or done!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
		<title>Untitled Document</title>
		<script type="text/javascript">
<!--
window.onload=show;
function show(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}
//-->
		</script>
		<style type="text/css" media="screen">
			<!-- 
body {
margin: 0;
padding: 0;
background: black;
font: 70% verdana, arial, sans-serif;
}
dl, dt, dd, ul, li {
margin: 0;
padding: 0;
list-style-type: none;
}
#menu {
position: absolute; /* Menu position that can be changed at will */
top: 77px;
left: 20px;
}
#menu {
width: 20em;
}
#menu dt {
cursor: pointer;
margin: 2px 0;;
height: 20px;
line-height: 20px;
text-align: left;
font-weight: bold;
border: 1px Black;
background: black;
}
#menu dd {
border: 1px Black;
}
#menu li {
text-align: left;
background: black;
}
#menu li a, #menu dt a {
color: #fff;
text-decoration: none;
display: block;
border: 0 none;
height: 100%;
}
#menu li a:hover, #menu dt a:hover {
background: black;
}
.style1 {color: #FFFFFF}
--></style>
	</head>
	<body>
		<dl id="menu">
			<dt onclick="javascript:show();"><a href="mainFrame.html" target="mainFrame">Home</a></dt>
			<dt onclick="javascript:show('smenu2');">
				<span class="style1">Maastricht</span></dt>
			<dd id="smenu2">
				<ul>
					<li class="style1">
						<a href="pages/page1.html" target="mainFrame">&nbsp;&nbsp;Page 1</a></li>
					<li class="style1">
						<a href="pages/page2.html" target="mainFrame">&nbsp;&nbsp;Page 2</a></li>
					<li class="style1">
						<a href="pages/page3.html" target="mainFrame">&nbsp;&nbsp;Page 3</a></li>
				</ul>
			</dd>
			<dt onclick="javascript:show('smenu3');">
				<span class="style1">Events</span></dt>
			<dd id="smenu3">
				<ul class="style1">
					<li>
						<a href="pages/page4.html" target="mainFrame">&nbsp;&nbsp;Page 4</a></li>
					<li>
						<a href="pages/page5.html" target="mainFrame">&nbsp;&nbsp;Page 5</a></li>
					<li>
						<a href="pages/page6.html" target="mainFrame">&nbsp;&nbsp;Page 6</a></li>
				</ul>
			</dd>
			<dt onclick="javascript:show('smenu4');">
				<span class="style1">Travel</span></dt>
			<dd id="smenu4">
				<ul>
					<li class="style1">
						<a href="pages/page7.html" target="mainFrame">&nbsp;&nbsp;Page 7</a></li>
					<li class="style1">
						<a href="pages/page8.html" target="mainFrame">&nbsp;&nbsp;Page 8</a></li>
					<li class="style1">
						<a href="pages/page9.html" target="mainFrame">&nbsp;&nbsp;Page 9</a></li>
				</ul>
			</dd>
			<dt onclick="javascript:show('smenu5');">
				<span class="style1">Sphinx</span></dt>
			<dd id="smenu5">
				<ul>
					<li class="style1">
						<a href="pages/page10.html" target="mainFrame">&nbsp;&nbsp;Page 10</a></li>
					<li class="style1">
						<a href="pages/page11.html" target="mainFrame">&nbsp;&nbsp;Page 11</a></li>
					<li class="style1">
						<a href="pages/page12.html" target="mainFrame">&nbsp;&nbsp;Page 12</a></li>
				</ul>
			</dd>
			<dt onclick="javascript:show('smenu6');">
				<span class="style1">Diversity</span></dt>
			<dd id="smenu6">
				<ul>
					<li class="style1">
						<a href="pages/page13.html" target="mainFrame">&nbsp;&nbsp;Page 13</a></li>
					<li class="style1">
						<a href="pages/page14.html" target="mainFrame">&nbsp;&nbsp;Page 14</a></li>
					<li class="style1">
						<a href="pages/page15.html" target="mainFrame">&nbsp;&nbsp;Page 15</a></li>
				</ul>
			</dd>
			<dt onclick="javascript:show('smenu7');">
				<span class="style1">Author</span></dt>
			<dd id="smenu7">
				<ul>
					<li class="style1">
						<a href="pages/PhotographerHH.html" target="mainFrame">&nbsp;&nbsp;Photographer</a></li>
						<li class="style1">
						<a href="pages/CreatorMH.html" target="mainFrame">&nbsp;&nbsp;Creator</a></li>
				</ul>
			</dd>
			<dt onclick="javascript:show('smenu8');">
				<span class="style1">Links</span></dt>
			<dd id="smenu8">
				<ul>
					<li class="style1">
						<a href="http://www.google.nl" target="_blank">&nbsp;&nbsp;Google</a></li>
					<li class="style1">
						<a href="http://www.clubcharts.nl" target="_blank">&nbsp;&nbsp;Clubcharts</a></li>
					<li class="style1">
						<a href="http://www.djdadevil.com" target="_blank">&nbsp;&nbsp;Dj Da Devil</a></li>
				</ul>
			</dd>
			<dt onclick="javascript:show('smenu9');">
				<span class="style1">Contact</span></dt>
			<dd id="smenu9">
				<ul>
					<li class="style1">
						<a href="mailto:henk@henkhouben.nl">&nbsp;&nbsp;E-Mail</a></li>
				</ul>
			</dd>
		</dl>
	</body>
</html>


In wait of (a quick s.v.p.?) respons, I remain,

Your sincerrely,

Mark
The Netherlands
(Pays Bas)
Edited by djdadevil (03 Jan 2006 - 13:34)
<traduction>

Bonjour à tous,

En premier lieu j'aimerais dire que je ne connais rien de plus en Français que "Je n'ai comprend pas, tu parlez Anglais?? No? Tu Zut..." (et J'ESPÈRE que ce n'est pas mal pris quand je dis celà à une personne Francophone si vous voyez ce que je veux dire!). Et la plupart du temps c'est suffisant pour moi en tant qu'Allemand, cependant je connais mon Anglais, et je vais essayer de voir si quelqu'un ici le connais aussi et peut m'aider, parce que j'ai déjà envoyé ceci au webmestre, mais il est trop occupé pour m'aider, et m'a suggéré de le placer ici sur le forum, bien qu'il soit en Français, j'essais de voir combien loin je viens en navigant ici (?!?), parce que j'ai aussi un forum PHPbb sur un de mes serveurs... Mais je vous pris chaques réponses ici en Anglais, parce que je ne comprends pas le Français (et vous pouvez avoir vu dans ma seule phrase entièrement en Français que je connais!)

Donc, voici le problème:

J'ai 2 questions au sujet des menus déroulants en CSS et (X)HTML (vertical et horizontal) qui est expliqué en Anglais (http://tutorials.alsacreations.com/deroulant/) sur une des pages de ce site. J'essais de personnaliser le menu vertical selon mes besoins, pareil au menu que le situé à www.henkhouben.nl/Test possède. Seulement, vous pouvez avoir vu, ce menu ne fonctionne pas à 100%, et j'ai travaillé avec depuis plus d'un an jusqu'à maintenant, mais il semble que je ne peux pas le fixer correctement! Donc après une longue recherche j'ai trouvé ce menu très similaire sur ce site...

Mais il y a 2 choses que je veux voir, du texte simple est utilisé, je veux placer une petite image devant le texte, j'ai essayé ceci en ajoutant le imgsrc-tag, mais ça a complètement d*c*l*ss* le menu (le texte passe à la ligne et ne se positionne pas au côté de l'image!). Alors après quelques combinaisons rien ne marche, donc je me tourne vers vous (premièrement, le concepteur de ce site, mais il a suggéré de le mettre ici...)? 2 questions que je combine en 1 :

Est-ce que quelqu'un peut me dire (ou faire pour moi) comment personnaliser ce menu afin qu'il puisse contenir des images juste comme celles que j'ai utilisées sur www.henkhouben.nl/Test (Les images que j'ai!)?

En résumé:
Problème 1:
Les images elles-même au côté du texte (comme celle sur www.henkhouben.nl/Test )

Problème 2:
Quand sur www.henkhouben.nl/Test vous voyez >-images mais que vous ouvrez un menu, l'image change, et quand vous ouvrez un autre menu (comme ce nouveau menu fait aussi, c'est une des caractéristiques-clés pour moi!), l'image revient. Est-ce que ça peut aussi être applicable à ce menu??? Si oui, est-ce que quelqu'un pourrait me dire (ou faire pour moi) comment personnaliser ceci afin qu'il fasse exactement ce que le menu situé à www.henkhouben.nl/Test fait???

Si quelqu'un peut m'aider avec ces problèmes je serais très heureux!!!

Je vais placer le html de mon menu maintenant dans la boîte ci-dessous, c'est peut-être plus simple pour vous pour comprendre ce qui doit être ajouté ou fait!


(voir plus haut)


En attente de (rapides s.v.p.?) réponses, je demeure,

Sincèrement vôtre,

Mark
The Netherlands
(Pays Bas)

</traduction>
Modifié par Stephan (31 Dec 2005 - 19:50)
Modérateur
hello, and welcome on the forum. <fr>bienvenue</fr>

here is the page redone, (just the css part) so your "images ares used.
the bullets.gif is used as a list bullets, and the "closed.gif" image is used as a background.
<fr>la page refaite en usant de ses image comme imge de liste et background, + padding </fr>
Adding a bit of padding, i guess i get to something that looks alike your linked menu .
so the page:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
		<title>Untitled Document</title>
		<script type="text/javascript">
<!--
window.onload=show;
function show(id) {

var d = document.getElementById(id);

	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) 

{document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}
//-->
		</script>
		<style type="text/css" media="screen">
/* Edited with EditCSS */
/**** Inline STYLE-tag style sheet ****/
			<!-- 
body {
margin: 0;
padding: 0;
background: black;
font: 70% verdana, arial, sans-serif;
}
dl, dt, dd, ul, li {
margin: 0;
padding: 0;
list-style-image:url(http://www.henkhouben.nl/Test/images/bullet.gif);/* replacing/your your bullets */
}

#menu {
position: absolute; /* Menu position that can be changed at will */
top: 77px;
left: 20px;
}

#menu {
width: 20em;
}

#menu dt {
cursor: pointer;
margin: 2px 0;;
height: 20px;
line-height: 20px;
text-align: left;
font-weight: bold;
border: 1px Black;
background: black;
}

#menu dd {
border: 1px Black;
}

#menu li {
text-align: left;
margin-left:2em;
background: black;
}

#menu li a, #menu dt a {
color: #fff;
text-decoration: none;
display: block;
border: 0 none;
height: 100%;
}

#menu li a:hover, #menu dt a:hover {
background: black;
}

.style1 {color: #FFFFFF}

dt span, dt a { background:url(http://www.henkhouben.nl/Test/images/closed.gif) left bottom 

no-repeat;padding-left:30px;} /* using you open image */

--></style>

	</head>
	<body>
		<dl id="menu">
			<dt onclick="javascript:show(); "><a href="mainFrame.html" 

target="mainFrame">Home</a></dt>
			<dt onclick="javascript:show('smenu2');">
				<span class="style1">Maastricht</span></dt>
			<dd id="smenu2">
				<ul>
					<li class="style1">
						<a href="pages/page1.html" 

target="mainFrame">&nbsp;&nbsp;Page 1</a></li>
					<li class="style1">
						<a href="pages/page2.html" 

target="mainFrame">&nbsp;&nbsp;Page 2</a></li>
					<li class="style1">
						<a href="pages/page3.html" 

target="mainFrame">&nbsp;&nbsp;Page 3</a></li>
				</ul>
			</dd>
			<dt onclick="javascript:show('smenu3');">
				<span class="style1">Events</span></dt>
			<dd id="smenu3">
				<ul class="style1">
					<li>
						<a href="pages/page4.html" 

target="mainFrame">&nbsp;&nbsp;Page 4</a></li>
					<li>
						<a href="pages/page5.html" 

target="mainFrame">&nbsp;&nbsp;Page 5</a></li>
					<li>
						<a href="pages/page6.html" 

target="mainFrame">&nbsp;&nbsp;Page 6</a></li>
				</ul>
			</dd>
			<dt onclick="javascript:show('smenu4');">
				<span class="style1">Travel</span></dt>
			<dd id="smenu4">
				<ul>
					<li class="style1">
						<a href="pages/page7.html" 

target="mainFrame">&nbsp;&nbsp;Page 7</a></li>
					<li class="style1">
						<a href="pages/page8.html" 

target="mainFrame">&nbsp;&nbsp;Page 8</a></li>
					<li class="style1">
						<a href="pages/page9.html" 

target="mainFrame">&nbsp;&nbsp;Page 9</a></li>
				</ul>
			</dd>
			<dt onclick="javascript:show('smenu5');">
				<span class="style1">Sphinx</span></dt>
			<dd id="smenu5">
				<ul>
					<li class="style1">
						<a href="pages/page10.html" 

target="mainFrame">&nbsp;&nbsp;Page 10</a></li>
					<li class="style1">
						<a href="pages/page11.html" 

target="mainFrame">&nbsp;&nbsp;Page 11</a></li>
					<li class="style1">
						<a href="pages/page12.html" 

target="mainFrame">&nbsp;&nbsp;Page 12</a></li>
				</ul>
			</dd>
			<dt onclick="javascript:show('smenu6');">
				<span class="style1">Diversity</span></dt>
			<dd id="smenu6">
				<ul>
					<li class="style1">
						<a href="pages/page13.html" 

target="mainFrame">&nbsp;&nbsp;Page 13</a></li>
					<li class="style1">
						<a href="pages/page14.html" 

target="mainFrame">&nbsp;&nbsp;Page 14</a></li>
					<li class="style1">
						<a href="pages/page15.html" 

target="mainFrame">&nbsp;&nbsp;Page 15</a></li>
				</ul>
			</dd>
			<dt onclick="javascript:show('smenu7');">
				<span class="style1">Author</span></dt>
			<dd id="smenu7">
				<ul>
					<li class="style1">
						<a href="pages/PhotographerHH.html" 

target="mainFrame">&nbsp;&nbsp;Photographer</a></li>
						<li class="style1">
						<a href="pages/CreatorMH.html" 

target="mainFrame">&nbsp;&nbsp;Creator</a></li>
				</ul>
			</dd>
			<dt onclick="javascript:show('smenu8');">
				<span class="style1">Links</span></dt>
			<dd id="smenu8">
				<ul>
					<li class="style1">
						<a href="http://www.google.nl" 

target="_blank">&nbsp;&nbsp;Google</a></li>
					<li class="style1">
						<a href="http://www.clubcharts.nl" 

target="_blank">&nbsp;&nbsp;Clubcharts</a></li>
					<li class="style1">
						<a href="http://www.djdadevil.com" 

target="_blank">&nbsp;&nbsp;Dj Da Devil</a></li>
				</ul>
			</dd>
			<dt onclick="javascript:show('smenu9');">
				<span class="style1">Contact</span></dt>
			<dd id="smenu9">
				<ul>
					<li class="style1">
						<a 

href="mailto:henk@henkhouben.nl">&nbsp;&nbsp;E-Mail</a></li>
				</ul>
			</dd>
		</dl>
	</body>
</html>

You will notice not much difference , I change list-style-type:none; to list-style-image: your bullets, and add some style for/to "dt span" and "dt a" .
I have no skills really in javascript, i guess you need a function that over writes the style for the background to "dt", then you should give to each one of them an "id" to be abble to do so.
If anyone has here , the nice little line of code that works fine ...(maybe two, to switch back .)
<fr> en donnant une id a chaque "dt" il est possible d'appliquer un background different a chaquune d'elle. si quelqu'un a ces petite ligne de code qui marche bien, cela serait bien, je suis nul en javascript.</fr>
Smiley cligne

doei (if i dare !)

i hope that helps.
Thanx... you hit the nail... only not whole... I just had to add this line (everything else seemed to be the same!):

a écrit :
dt span, dt a { background:url(images/closed.gif) left bottom no-repeat;padding-left:30px;} /* using you open image */

under styledefinition 1.

This gives me indeed the images in front of the first menu item's.. only not the ones in front of the sebmenu's, and the item doesn't changes when it's submenu is opened... but it's a start, already thank you, and certainly as you said yourself with you lack of javascript knoweldge (same as me, only my time is money if you know what I mean!) ...

But thanks for the Englisch, cause my French is crappy (I Might as wel say it!).... than I also wanna thank the one who translated my Englisch text tot French!!! Everybody thank.... but will be chekking regulary for more solutions.....

- I putted the menu as it is now on the net here http://www.henkhouben.nl/Test3 (you also might see the difference with jumping in in the submenu's!) and
- the menu witch was as I had edited it, is located here:
http://www.henkhouben.nl/Test2
So you can see the changes cq. can visualise the whole!
- http://www.henkhouben.nl/Test still is the old one!

Thanks again, in wait of response I remain.

your sincerrely,

Mark

ps: doei, don't know what you mean by that exactly, but here in Pays Bas (;)) it is the same as in your French, 'Salut' is Smiley smile
Edited by djdadevil (03 Jan 2006 - 13:36)
Modérateur
Well, did you try the whole page (css part at least ) left up there ?

there were those things a bit different too:
dl, dt, dd, ul, li {
margin: 0;
padding: 0;
list-style-image:url(http://www.henkhouben.nl/Test/images/bullet.gif);
/* replacing/your your bullets */
}
for the bullets .....

#menu li {
text-align: left;
margin-left:2em;
background: black;
}
to merge the list a bit ....
and the last one you have seen
dt span, dt a { 
background:url(http://www.henkhouben.nl/Test/images/closed.gif) left bottom no-repeat;padding-left:30px;}


exactly, just missing "zi" javascript part ! for the use of the open.gif "bullet" ...

au revoir

<edit> ,doei seemed too me a bit too popular, or too childish, maybe to be used here .. it was juts for the fun</edit>



Smiley cligne
Modifié par gcyrillus (04 Jan 2006 - 01:15)
Aah yeah,

missed those things haha..... stupid me, it's just that the forum here set's the scripts different than the script is on my scripting program (wich I use to alter scripts!)..

Whole problem 1 is solved now.... now only one problem that I would like to see fixed yet (and if it´s not possible, also fine, but than let me that s.v.p.!).
I'll repeat it here:

Problem 2:
When on www.henkhouben.nl/Test you see >-images but when you openup a menu, the image changes, and when you open up another menu (like this new menu also does, that is one of the key-features to me!), the image changes back.
Could this also be made applieable to this menu??? If so, could someone tell me (or do for me) how to customise that so it does exactly what the menu on www.henkhouben.nl/Test does???

BUT ALREADY A BIG THANKS FOR PROBLEM 1 (the results are still located here: http://www.henkhouben.nl/Test3 )

In wait of maybe a second answer to my second problem, I still remain,

Your sincerrely,

Mark

BTW, am lucky that there are still some French people who know theur Englisch good!! Appreciate, and it´s not that I say all French people don´t know that language, but it´s well common that when French people come to visit Pays Bas, they just keep talking French, atleast that´s my experience with French people, and I know, cause I work just besides the ´route de soleil´ in Maastricht au Pays Bas.
Edited by djdadevil (05 Jan 2006 - 13:42)
Modérateur
re-hello,
actually, your problem N°2 might deserve a new topic, maybe in the DOM-JavaScript-ECMAScript section of this forum.
<fr> pour le javascript manquant pour changer l'image de background sur sur les "dt span" et le"dt a" au click (et deroulement du sous menu) , il vaudrait mieux , peut-etre se tourné vers la section dom,javascript,ecmascript du forum.</fr>

Thanks for your words, I never been to the nederlands, ...noch niet maar ik gaa in "het nederlands" probieren ... when i'll go visit that nice country, ...just to show that we are europeen too... and i'm surprised you did'nt get more answers or help here .... Tot so. Smiley smile

<fr>Merci ,On est Europeens aussi , et beaucoup savent s'exprimer aussi en anglais .... a plus Smiley cligne </fr>
gcyrillus a écrit :
re-hello,
actually, your problem N°2 might deserve a new topic, maybe in the DOM-JavaScript-ECMAScript section of this forum.
<fr> pour le javascript manquant pour changer l'image de background sur sur les "dt span" et le"dt a" au click (et deroulement du sous menu) , il vaudrait mieux , peut-etre se tourné vers la section dom,javascript,ecmascript du forum.</fr>

Thanks for your words, I never been to the nederlands, ...noch niet maar ik gaa in "het nederlands" probieren ... when i'll go visit that nice country, ...just to show that we are europeen too... and i'm surprised you did'nt get more answers or help here .... Tot so. Smiley smile

<fr>Merci ,On est Europeens aussi , et beaucoup savent s'exprimer aussi en anglais .... a plus Smiley cligne </fr>


I opened up a new fresh topic in here: http://forum.alsacreations.com/topic-5-10253-1-ANGLAIS-Problem-With-A-JavascriptCSS-vertical-Dropdown-Menu.html

No thanks for the words, and your Dutch is quite ok! (actually you're the first one I see trying to adapt to it's future visiting country Smiley smile NICE!!!) This is how it's spelled good:
'nog niet, maar ik ga het in het Nederlands proberen' but every man and woman in the Netherlands will also understand what you said!! Keep Up!! Smiley lol And indeed, France also is Europe, only 1 country I think should not be... Turkey (but that's just because we already have enough Turkish imigrants if you know what I mean, it's not for the people, most of them are nice, but they should not open up te border 100% to Them!, but that's just an opinion!)
And France, been there 1 time since now.... looks quite a bit like my own living enviroment in Maastricht and around Smiley smile (and than I'm talking landscape!!!) Nice country, but don't have the time to understand it's language, in my occupation only Englisch and some German is required, so you now!!!

But alright before here is a whole life story and vision of all sort of things, I also thought more would have commented, but that's what I said, don't know much French man and women who know Dutch or Even Englisch... but that's not a bad thing... it's just not easy communicating for people abroad... but alright... THANK YOU, and hope my second problem (wich realy isn't a problem, but alright!) is soon to be solved!

Thank you very much, Groetjes, Tschüss, Doei, Bye Bye Salut, Au Revoir, bon voyage perhaps Smiley cligne and untill we meet again (whenever that might be, you never know!)

Your sincerrely,

Mark au Maastricht dé Pays Bas (or something like that isn't it?)

BTW: I will be monitoring 2 topics now on this forum (cause I already told, my French s*cks (sorry for that again), and wouldn't het wise out of all the other French topics!), answer to the second problem may also be placed in here!!!
Edited by djdadevil (06 Jan 2006 - 00:15)
Modérateur
Hello, MARK, de MAASTRICHT aux Pays-Bas . Smiley smile
the answer to you problem 2 is there hopefully<fr> une reponse pour le 2eme probleme ?</fr> :
http://forum.alsacreations.com/topic-5-10253-1-ANGLAIS-Problem-With-A-JavascriptCSS-vertical-Dropdown-Menu.html#p83889
I tryed to give a little explanation of how i change a bit the original script, I first thought of 2 extra lines of code, burt then it's 4, and a few cahange to css & html part. It works for me....
Success met jauw website.
gcyrillus a écrit :
Hello, MARK, de MAASTRICHT aux Pays-Bas . Smiley smile
the answer to you problem 2 is there hopefully<fr> une reponse pour le 2eme probleme ?</fr> :
http://forum.alsacreations.com/topic-5-10253-1-ANGLAIS-Problem-With-A-JavascriptCSS-vertical-Dropdown-Menu.html#p83889
I tryed to give a little explanation of how i change a bit the original script, I first thought of 2 extra lines of code, burt then it's 4, and a few cahange to css & html part. It works for me....
Success met jauw website.


GCyrillus... to continue your Dutch lessons: it's writen: 'Succes met jouw website', Thank u, it's not mine, mine is located here: http://www.djdadevil.com (or .nl or .net, doesn't matter!)... and that is something very different than this, this is a website for my uncle as customer for wich I want this to use hehe... but yet here, every Dutch man or women will understand what you spelled out there! Your doing great job hehe!! And my other wishes and answers you wish to see are in the other thread from me, in this forum!

Your sincerrely,

Mark de MAASTRICHT aux Pays Bas Smiley smile
Edited by djdadevil (07 Jan 2006 - 15:20)