Hello Maria,
problem solved. I replaced the code:
section class=”property-image”>
<?php the_post_thumbnail(‘property-featured-image’); ?>
</section>
from the Madison-theme in property-content.php with:
section class=”property-image”>
<a class=”fancybox_image” rel=”fancybox”
href=”<?php echo wp_get_attachment_url(get_post_thumbnail_id(get_the_ID())); ?>”>
<?php echo get_the_post_thumbnail(get_the_ID()); ?>
</section>
from the content-property.php of the Avalon-theme.
Thanks, Kay