Forum Discussion

Warren_Brill's avatar
11 years ago

Is it Possible to Hide a Specific (Single) Rank Name?

SInce the Skin CSS does not have any conditional branching, how would it be possible to hide (display:none;) only a single rank name? The object is called lia-message-author-rank in the CSS.

  • Warren_Brill - It won't be possible via CSS alone, you need to use jQuery to achieve it.

     

    you need to first traverse to the author rank div "lia-message-author-rank", and then pull the value of the rank, match the value to the desired rank, and hide it using hide(); or .css('display','none');

     

    Make sure you use .find to get through all the rank divs on page.