Izenda Logo

This documentation is for the legacy Izenda 6 product. Documentation for the new Izenda 7 product can be found at https://www.izenda.com/docs/

Instructions

On the report list, you can toggle word wrapping in the report title text. To do this, modify the css/main.css file in your Izenda application. Find the string "word-break:" under the "#tabs .thumbs div.thumb-title" CSS rule and replace the word that follows with either "break-all" to enable text wrapping or "normal" to disable text wrapping.

#tabs .thumbs div.thumb-title {
  color: #000; 
  display: block;
  font-family: "Droid Sans", Tahoma, "Segoe UI", sans-serif !important;
  font-size: 14.5px;
  letter-spacing: 0px;
  line-height: 20px;
  padding: 2px 0 0 6px;
  position: relative; 
  word-break: normal; //Setting to change
}