2
It is a css problem. Go in admin/Templates/xcgal menu.
Then, open the template "xcgal_dsiplay.html". In the file, you should see something like this:
-----
<{if $pic_caption !=''}>
<{$pic_caption}> |
<{/if}>
-----
The problem is simple, those tags are in a "td" cell that has a nowrap setting for white-space. You have to set it back to normal for the description. So, add the "white-space:normal;" attribute:
-----
<{if $pic_caption !=''}>
<{$pic_caption}> |
<{/if}>
-----
For the title, you have probably something like:
----
<{if $pic_title!=''}>
<{$pic_title}> |
---|
<{/if}>
----
Do the same:
----
<{if $pic_title!=''}>
<{$pic_title}> |
---|
<{/if}>
----
Hope it will help.