Hi cosero,
Open the blog_detail.php in the ” templates/ja_wall/html/com_content/category ” folder path and find the following PHP code section.
[PHP]
<!– Item Img –>
<div class=”item-image”>
<?php if (isset($images->image_intro) and !empty($images->image_intro)) : ?>
<?php $imgfloat = (empty($images->float_intro)) ? $params->get(‘float_intro’) : $images->float_intro; ?>
<div class=”img-intro-<?php echo htmlspecialchars($imgfloat); ?>”>
<?php if ($params->get(‘link_titles’) && $params->get(‘access-view’)) : ?>
<a href=”<?php echo $link; ?>” title=”<?php echo $atitle ?>” class=”item-link”>
<?php endif; ?>
<img
<?php if ($images->image_intro_caption):
echo ‘class=”caption”‘.’ title=”‘ .htmlspecialchars($images->image_intro_caption) .'”‘;
endif; ?>
src=”<?php echo htmlspecialchars($images->image_intro); ?>” alt=”<?php echo htmlspecialchars($images->image_intro_alt); ?>”/>
<?php if ($params->get(‘link_titles’) && $params->get(‘access-view’)) : ?>
<span> </span>
</a>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
<!– //Item Img –>
[/PHP]
Replace by the following code section:
[PHP]
<!– Item Img –>
<div class=”item-image”>
<?php if (isset($images->image_intro) and !empty($images->image_intro)) : ?>
<?php $imgfloat = (empty($images->float_intro)) ? $params->get(‘float_intro’) : $images->float_intro; ?>
<div class=”img-intro-<?php echo htmlspecialchars($imgfloat); ?>”>
<img
<?php if ($images->image_intro_caption):
echo ‘class=”caption”‘.’ title=”‘ .htmlspecialchars($images->image_intro_caption) .'”‘;
endif; ?>
src=”<?php echo htmlspecialchars($images->image_intro); ?>” alt=”<?php echo htmlspecialchars($images->image_intro_alt); ?>”/>
<?php if ($params->get(‘link_titles’) && $params->get(‘access-view’)) : ?>
<span> </span>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
<!– //Item Img –>
[/PHP]
Best regards!