• I’m using the Post UI Tabs module on a website that I’m developing, and so far it does exactly what I need – http://fleshandbuns.virtualabode.com/menus/drinks/

    I have one small element of customisation that I’m struggling with and am hoping that someone could kindly point me in the right direction. In brief:

    So far I’ve tried

    • using CSS to set the LI list-style to none and the A color to #fff, but the UL still flash up on the page
    • I’ve also tried using JQuery .hide, but the UL still flash up on the page

    Kind regards
    Luke

    http://wordpress.org/extend/plugins/put/

Viewing 1 replies (of 1 total)
  • Plugin Author Mark / t31os

    (@t31os_)

    Using CSS would be the way to go, that will hide the element out of sight straight away and should not cause any flash of content.

    You should set the display property for the list container though and not each individual list item.

    Eg.

    .ui-tabs-nav { display:none; }

    Or if it’s being a little persistant..

    .ui-tabs-nav { display:none!important; }

Viewing 1 replies (of 1 total)
  • The topic ‘Hiding tabular navigation’ is closed to new replies.