So hab mal ein bisschen weiter gebastelt und das Logo oben sollte jetzt auch kleiner sein, ist eine Vektorgrafik (vorher 28,5 KB jetzt 3,58 KB). Allerdings habe ich jetzt noch das Problem, dass in der PHP vom Plugin ein 40x40 Thumbnail abgerufen wird, das müsste irgendwie geändert werden und danke für die Hilfe :)
[size=8]
[size=10]>
<ul class="clearfix">
<?php foreach($slides as $i=>$slide): ?>
<?php if ( 'image' == $slide['type'] ) : ?>
<li>
<img src="<?php echo $slide['image_thumbnails']['40_40_crop']; ?>" width="245" height="118" alt="<?php echo $slide['img_alt'];?>" title="<?php echo $slide['img_title'];?>" />
</li>
<?php elseif ( 'youtube' == $slide['type'] ) : ?>
<li>
<img src="<?php echo $slide['thumbnail_small']; ?>" width="245" height="118" alt="<?php echo $slide['img_alt'];?>" title="<?php echo $slide['img_title'];?>" />
</li>
<?php elseif ( 'vimeo' == $slide['type'] ) : ?>
<li>
<img src="<?php echo $slide['thumbnail_small']; ?>" width="245" height="118" alt="<?php echo $slide['img_alt'];?>" title="<?php echo $slide['img_title'];?>" />
</li>
<?php elseif ( 'video' == $slide['type'] ) : ?>
<li>
<div class="thumb-custom">Video</div>
</li>
<?php elseif ( 'custom' == $slide['type'] ) : ?>
<li>
<div class="thumb-custom">HTML</div>
</li>
<?php endif; ?>
<?php endforeach; ?>
</ul>[/SIZE][/SIZE]
Ich glaub ich wieß auch schon die Stelle wo man das ändern muss, allerdings weiß ich nicht wie ich das ändern kann - wäre nett wenn mir jemand helfen könnte.