Hello again. You need to help us to help you. For example, I suggested you use Firebug to diagnose some problems.

Quote Originally Posted by rapro View Post
the problem is that it somehow does not see smaal pictures and prev.gif and next.gif.
If you used Firebug, you would see:
""NetworkError: 403 Forbidden - http://www.witgoedextra.nl/wxt/includes/templates/wxt/jscript/jscript_themes/dark/next.gif""

You need to change permissions on those prev/next files to be something like 644, at the moment the permissions are wrong. Look for chmod in your ftp client.

Next, I suggested you change the transition time from zero.

Quote Originally Posted by rapro View Post
The timer does work tho so i can let it change every 5 or 10 sec.

Cant figure it out
Well, this is because you didn't change the transition time from zero, like I suggested.

So, your original code as I found it:
http://www.digitaltoast.co.uk/zen/wit1.php

now after 5 seconds work to change

transition_interval: 0
to
transition_interval: 3000

it looks like this http://www.digitaltoast.co.uk/zen/wit1.php.
But still no thumbnail.

Now what I am most confused about is how you have got from the example code of this:

Code:
<li><span class="panel-overlay">This is an overlay</span><img src="http://appleton.me/wp-content/themes/appleton.me 1.6/images/01.jpg" /></li>
to this:

Code:
<div class="panel" style="width: 800px; height: 300px; position: absolute; overflow: hidden; top: 5px; left: 5px; display: none;">
<img src="http://www.witgoedextra.nl/wxt/includes/templates/wxt/images/gallery/01.jpg" style="height: 300px; width: 800px; position: relative; top: 0px; left: 0px;" alt="test"></img>
<span class="panel-overlay" style="position: absolute; z-index: 999; width: 778px; left: 0pt; bottom: 0px;">This is an overlay</span>
I have no idea where all that other stuff came from, but it will definitely break the plugin!

And you cannot use img tags like this

<img src="http://www.witgoedextra.nl/wxt/includes/templates/wxt/images/gallery/01.jpg"></img>

It must be:

<img src="http://www.witgoedextra.nl/wxt/includes/templates/wxt/images/gallery/01.jpg" />

Again, if you used that validator, it would tell you about this.

So, I stripped out all that extra stuff, and just used the example code with your links (1 minute) and now it looks like:
http://www.digitaltoast.co.uk/zen/wit3.php

So, now you just need permissions for your arrows.

We all started out new sometime, but if you are just starting with html and stuff, then it's good to look CLOSELY at what other people have done, and how and why it works.