Each section of this site has a fragment at the top describing the products that follow and the myriad of different products are displayed as a list.
Tthe fragment images are all larger than the constraints imposed by the layout so I have the unconstrained image opening in a Fancybox when the fragment image is clicked:
It works and fancybox displays the section name on the enlarged image. Problem is that it throws up a big red error which clients tend not to like.
How can I place the section name in a fragment without generating an error?
Thank you very much.
Tthe fragment images are all larger than the constraints imposed by the layout so I have the unconstrained image opening in a Fancybox when the fragment image is clicked:
Code:
<a class="fancybox" href="<actinic:variable name="FragmentImageFileName" />" title="<actinic:variable encoding="actinic" name="SectionName" />"> <img src="<actinic:variable name="FragmentImageFileName" />" title="<actinic:variable name="FragmentTitle" encoding="strip" />" alt="<actinic:variable name="FragmentTitle" encoding="strip" />" border="0" width="<actinic:variable name="FragmentImageWidth" />" height="<actinic:variable name="FragmentImageHeight" />" /> </a>
How can I place the section name in a fragment without generating an error?
Thank you very much.
Comment