tag
Legacy
Jahia Tags truncate the words in the cloud tags
Question
The customer has upgraded to DX 7.1.2 and the module Jahia Tags seems now truncate the words in the cloud tags.
By defaults, the size of the div in this module for the cloud tags is as below:
<div id="wordcloud" style="width: 280px; height: 200px;"></div>
Cause
The window of the cloud tags is defined in the tagCloud.jsp as below:
<div id="wordcloud" style="width: 280px; height: 200px;"></div>
The width and the height seem too low in the customer's case.
Solution
The width and the height can be modified as this is a default size as an example. The solution is to modify the size as below:
<div id="wordcloud" style="width: 380px; height: 300px;"></div>