Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

In this Discussion

Remove Category Management from right

I want to remove category management toggle box . Some body assist which file i have to touch.

Best Answers

  • JongosJongos
    Answer ✓

    @whu606

    He's asked for the file... :)

    Now knowing the module file he could :

    1. remove the module & view... (make his Vanilla lighter)
    2. find the view file and make it output nothing.
    3. hide it via css

    @As22

    you CAN hide page elements via CSS.

    .CategoryFollowToggleBox { display:none; }

    As22solonovareevez
  • whu606whu606 I'm not a SuperHero; I just like wearing tights... MVP
    Answer ✓

    That's right - that's actually both of them.

    The space indicates that (afaIk) the element takes rules from the Box class AND the CategoryFollowToggleBox.

    You don't want to affect the Box rule, as that will affect all elements that have that rule.

    So in your custom css file add a rule like this:

    .CategoryFollowToggleBox {display: none;}

    and the element won't display.

Answers

Sign In or Register to comment.