Hard to describe issiu, you have to see it for yourself
Hi,
Take a look a www.mckili.nl/locaties.aspx and investigate the generated html. The text under the image should be black but somehow <a></a> is generated encapsulates the it. The code that generates the image slide show and the text under the image is listed below
This piece of code will mess up your code because the a-element doesn't contain any content. You have just created an empty a-element which means that your generated HTML will collapse. I can see that you have the same link around your image, but what do you want to do with the second a-element?
Either you must put some content in this a-element or delete the whole section. Does that help?
This piece of code is generating the html for the jquery fancybox plugin. All pictures that need to be part of the slideshow are encapsulated with a link element. Do you have any suggestions to prevent the empty a-element?
Hard to describe issiu, you have to see it for yourself
Hi,
Take a look a www.mckili.nl/locaties.aspx and investigate the generated html. The text under the image should be black but somehow <a></a> is generated encapsulates the it. The code that generates the image slide show and the text under the image is listed below
Hi Bas
Take a look at the following piece of code from your code above:
This piece of code will mess up your code because the a-element doesn't contain any content. You have just created an empty a-element which means that your generated HTML will collapse. I can see that you have the same link around your image, but what do you want to do with the second a-element?
Either you must put some content in this a-element or delete the whole section. Does that help?
/Kim A
Hi Kim,
This piece of code is generating the html for the jquery fancybox plugin. All pictures that need to be part of the slideshow are encapsulated with a link element. Do you have any suggestions to prevent the empty a-element?
Regards,,
Bas
Kim,
I added a <xsl:text> elment with a  . That solved the problem. Thanks for pointing me in the right direction.
Kind regards,
Bas
You are very welcome Bas!
/Kim A
is working on a reply...