FAQ/Toggle-Text-Wrapping-on-the-Report-List.md
... ...
@@ -2,4 +2,18 @@
2 2
3 3
##Instructions
4 4
5
-On the report list, you can toggle the wrapping for the report titles. To accomplish this, modify the main.css file. 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 text wrap or "normal" to disable text wrapping.
... ...
\ No newline at end of file
0
+On the report list, you can toggle the wrapping for the report titles. To accomplish this, modify the main.css file. 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 text wrap or "**normal**" to disable text wrapping.
1
+
2
+```csharp
3
+#tabs .thumbs div.thumb-title {
4
+ color: #000;
5
+ display: block;
6
+ font-family: "Droid Sans", Tahoma, "Segoe UI", sans-serif !important;
7
+ font-size: 14.5px;
8
+ letter-spacing: 0px;
9
+ line-height: 20px;
10
+ padding: 2px 0 0 6px;
11
+ position: relative;
12
+ word-break: normal; //Setting to change
13
+}
14
+```
... ...
\ No newline at end of file