Hy, i still got a problem with my realisation....
My index.php now leads directly to image.php (thanks to acrylian) where i got a big view image and the thumbs under it.
The last thing i want to ask if it´s possible to style the archiv view, or maybe the album.php (unless i don´t use it right now) to get the following structure:
Album1
Thumbs:Imager1,2,3,4,5,6,7,8....
Album2
Thumbs:Imager1,2,3,4,5,6,7,8....
Album3
Thumbs:Imager1,2,3,4,5,6,7,8....
etc.
You know, what i mean....
So the idea is if someone comes to my page he choses on index a Album, zenphoto leads him directly to image.php and if he want´s to view all images he should get a list of all albums with all image-thumbs below.
is that possible?
Even better: I added this directly to my archiv view:
`
[code]
@PierreSnugg at the start of your while(next_album()) loop you could print the album title, and you could make each section (album title and it's thumbs) a paragraph,
so in some pseudo code just like this:
while (next_album)
print album title;
foreach (image) { draw the thumb }
endwhile
Here we go! Works perfect...
i wrote:
`