Yes Klas, as you see i use $fx->thumb1... but is outside foreach and because of this it return me maxresdefault.jpg :( If i try to add in foreach, will not work slider...
I'm just trying to learn mroe seblod and custom override :)
Edit: I find now a little bug and i don't understand why do this:
If foreach inslide <ul> tag... it display duplicate of some array ( images, last image and first image on start and end), if i use this:
<ul>
<?php foreach($cck->get( 'galerie_photo' )->value as $fx){ ?>
<li> <img src="/<?php echo $fx->value; ?>" alt="<?php echo $fx->image_alt; ?>" title ="<?php echo $fx->image_title; ?>" /></li>
<?php } ?>
</ul>
If i use only foreach, without ul and li: it display corectly only 3 images..