Large Number of Extensions

  1. 15 years ago

    Is there a way to cause the extensions that are NOT logged in, to go invisible or hidden? This would make managing our servers far more manageable with FOP2..

    Thank you,
    -Scott

  2. admin

    7 Jul 2009 Administrator

    You can edit operator.css file

    Look for this:

    .notregistered {
    background:#ddd;
    opacity:.50;
    filter:alpha(opacity=50);
    -moz-opacity:0.5px;
    }

    and change it to:

    .notregistered {
    display: none;
    background:#ddd;
    opacity:.50;
    filter:alpha(opacity=50);
    -moz-opacity:0.5px;
    }

    It should work. Be sure to flush your browser cache so the .css file is actually reloaded after you make the change.

    Best regards,

    --
    Nicolás

  3. I think that'll do it! Thank you..

    -Scott

or Sign Up to reply!