Hello all,
It is very nice module. But I want to ask about images & titles. How can I make image or title in slider linkable?
It is not enough to view read more link, but I need to make the title or the image linkable.
I'm not good at coding but I tried to edit the following code in the following file:
modules/mod_vina_camera_slider_content/tmpl/default.php
at line 65:
<!-- Title Block -->
<?php if($showTitle) :?>
<h3><?php echo $title; ?></h3>
<?php endif; ?>
I edited it to the following:
<!-- Title Block -->
<?php if($showTitle) :?>
<a href="<?php echo $link; ?>" title="<?php echo $title; ?>">
<h3><?php echo $title; ?></h3>
<?php endif; ?>
But it does not work properly. Both the title and description appear as linkable. And the title in caption appear late from the image especially in mobile view.
Could you help me please to make the title only or the image as linkable??
Thanks in advance!