Black Screen Issue: Please update your theme to ensure WordPress 5.6 compatibility. Dentalia 2.1 and Recycle 2.1 are now available on ThemeForest. 

Okay
  Public Ticket #2186959
Question/Feature Request for Tabs
Closed

Comments

  •  2
    jmelldog started the conversation

    I am using the Tabs widget for a large amount of info, and I am wondering if there is a way you know to do sub tabs of any form. Even just shifting the cells of the sub menu to the right would suffice. 

    Having a sub tab option would be amazing! Thank you 

  •  530
    OrionThemes replied

    Sadly there is no such option.
    If you want you can style it with css. The only way to target a specific tab is by counting the order.

    You could do something like this example:

    .page-id-1046 .nav-stacked > li:nth-child(12) > a, 
    .page-id-1046 .nav-stacked > li:nth-child(13) > a {
    padding-left: 40px;
    background: #ccc;
    }

    This will modify the style of 12th and 13th tab (on this page only).
    Kind regards,

    Andrej

  •  2
    jmelldog replied

    Thank you I managed to achieve it using that code. Thanks for your help!