Hide Unselectable Themes from Style Chooser

Hide Unselectable Themes from Style Chooser

Nebulous

Well-known member
Joe. submitted a new resource:

Hide Unselectable Themes from Style Chooser - Simple code to hide those unselectable / disabled themes you never look at.

If you have a bunch of unselectable themes cluttering up your Style Chooser screen, here's a simple code to add to your EXTRA.CSS template that will make them vanish. Regular members cannot see them, so why should you?

Add this to your EXTRA.CSS template:

Code:
/* Hide unselectable themes from style chooser */

.unselectable    {
        display: none;
        }
       
/* END hide unselectable */

...and that's it.

If you need to view your unselectable themes for any reason,...

Read more about this resource...
 
These styles are only visible to admins anyways, but you'll probably want to be a bit more specific with your css than just the class unselectable
 
Top Bottom