Hi,
Formerly, the content and search frame, when resized, would result in the TOC links wrapping. It no longer wraps. Is there a reason for this? Does anyone know how to make the TOC behave as it used to?
Thanks!
Julia
Webhelp content and search frame changed in 13.2
-
- Posts: 4144
- Joined: Fri Mar 28, 2003 2:12 pm
Re: Webhelp content and search frame changed in 13.2
Hi Julia,
In a previous version the Table of Contents was constructed in a different way. In the current version (Oxygen 13.2) you can add a horizontal scroll bar in the frame containing the Table of Contents by adding the following line at the end of the ul.dt-container selector in file [Oxygen-install-dir]\frameworks\dita\DITA-OT\plugins\com.oxygenxml.webhelp\oxygen-webhelp\resources\css\ui.dynatree.css:
The ul.dt-container will look like:
In the next Oxygen version we will try to allow wrapping in the Table of Contents frame as in previous versions.
Regards,
Sorin
In a previous version the Table of Contents was constructed in a different way. In the current version (Oxygen 13.2) you can add a horizontal scroll bar in the frame containing the Table of Contents by adding the following line at the end of the ul.dt-container selector in file [Oxygen-install-dir]\frameworks\dita\DITA-OT\plugins\com.oxygenxml.webhelp\oxygen-webhelp\resources\css\ui.dynatree.css:
Code: Select all
overflow-x:auto;
Code: Select all
ul.dt-container
{
...
overflow-x:auto;
}
Regards,
Sorin
Re: Webhelp content and search frame changed in 13.2
Thank you for the explanation. I look forward to the return of the wrapping functionality.