cls

cls - Optional CSS class to add to the tabs component.


<div id="tabs">
    <ul>
        <li>One</li>
        <li>Two</li>
    </ul>
    <div>Tab Pane 1</div> 
    <div>Tab Pane 2</div>
</div>

<script type="text/javascript">
    $(function () {
        $("#tabs").shieldTabs({
            cls: "tabstyle"
        });
    });
</script>

<style>
    .tabstyle {
         width: 200px;
     }
</style>