The image and caption, in class story
has two different links. Image points to one location and link to another.
I need to make whole class story
into a link.
<div class="story">
<a href="link"> <img src="linkforimage"></a>
<a href="link2">Caption for image </a>
</div>
I need a solution like this:
<a href="link">
<div class="story">
<a href="link"> <img src="linkforimage"></a>
<a href="link2">Caption for image </a>
</div>
</a>