Hi anymedia
I am a little confused by your request. When the user hovers over one item in this section, by default, it will show the article title, user can click and go to the article details.
Now, you want:
- User hover, no article title is shown, and no click action is available.
- Or when the user hovers, no article title is shown, but the user can still click the item to go to the detail page?
You can do these by customizing the file: template/ja_space/html/mod_articles_latest/slide.php.
For case 1, you can simply change this
<a href="<?php echo $item->link; ?>">
<div class="intro-image">
<img src="<?php echo $introImage->image_intro ;?>" alt="<?php echo $item->title; ?>" />
<span>
<?php echo $item->title; ?>
</span>
</div>
</a>
To
<div class="intro-image">
<img src="<?php echo $introImage->image_intro ;?>" alt="<?php echo $item->title; ?>" />
</div>
For case 2
Please change this
<a href="<?php echo $item->link; ?>">
<div class="intro-image">
<img src="<?php echo $introImage->image_intro ;?>" alt="<?php echo $item->title; ?>" />
<span>
<?php echo $item->title; ?>
</span>
</div>
</a>
To
<a href="<?php echo $item->link; ?>">
<div class="intro-image">
<img src="<?php echo $introImage->image_intro ;?>" alt="<?php echo $item->title; ?>" />
</div>
</a>
If you have any questions, please let me know.
Best regards.