PrizmDoc Viewer v13.14 - Updated
Developer Guide / Viewer / How to Customize the Viewer / Change the Position of the Menu Bar
In This Topic
    Change the Position of the Menu Bar
    In This Topic

    You can change the layout of the tab panes by modifying the markup located in viewerTemplate.html.

    Example
    Copy Code
    <div class="tabset pcc-nav-tabset" data-pcc-nav>
       <!-- Tab -->
       <div class="pcc-tab" data-pcc-nav-tab="demo">
           <div class="pcc-tab-item">Demo</div>
           <!-- This tab pane is vertical and left aligned -->
           <div class="pcc-tab-pane pcc-tab-vertical pcc-left">
               <!-- Tab content -->
           </div>
       </div>
       <!-- End tab -->
    </div>