Reordering Accordian Items
Reordering Accordian Items
Is there any way to reorder the accordion items in WebHelp (for example, moving the TOC below the Search)?
Re: Reordering Accordian Items
Hi,
Maybe it is not the most conventional way, but if you open your Skin file (*.flskn) in a Text Editor, you can specify the accordion items order in the "Tabs" section and even the Default tab on startup:
<?xml version="1.0" encoding="utf-8"?>
<CatapultSkin
Version="1"
Comment="This is the default skin"
Anchors="Width,Height"
Width="1571px"
Height="910px"
Top="22px"
Left="55px"
Bottom="82px"
Right="54px"
Tabs="BrowseSequences,Favorites,Index,Search,TOC"
DefaultTab="TOC"
UseBrowserDefaultSize="false"
UseDefaultBrowserSetup="true"
ToolbarInTopic="false"
AutoSyncTOC="true"
Title="[%=MY_VAR_SET.Product%] Getting Started Guide">
Hope this helps !
DoCo
Maybe it is not the most conventional way, but if you open your Skin file (*.flskn) in a Text Editor, you can specify the accordion items order in the "Tabs" section and even the Default tab on startup:
<?xml version="1.0" encoding="utf-8"?>
<CatapultSkin
Version="1"
Comment="This is the default skin"
Anchors="Width,Height"
Width="1571px"
Height="910px"
Top="22px"
Left="55px"
Bottom="82px"
Right="54px"
Tabs="BrowseSequences,Favorites,Index,Search,TOC"
DefaultTab="TOC"
UseBrowserDefaultSize="false"
UseDefaultBrowserSetup="true"
ToolbarInTopic="false"
AutoSyncTOC="true"
Title="[%=MY_VAR_SET.Product%] Getting Started Guide">
Hope this helps !
DoCo
Re: Reordering Accordian Items
Thank you. This worked perfectly.