Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

Where can i change the content of the MeBox?

Hi,

I'd like to remove the photo from the MeBox, but i am not able to do it via css since display:none; seems also to alter the photos from the inbox too.

Any clues?

Best Answer

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

    Try

    .MeBox.Inline > .PhotoWrap .ProfilePhoto {
        display: none;
    
    }
    

Answers

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

    Try

    .MeBox.Inline > .PhotoWrap .ProfilePhoto {
        display: none;
    
    }
    
  • Options
    keeshakeesha
    edited May 2016

    Thanks a lot ...

    .MeBox > .PhotoWrap {
    display: none;
    }
    

    ... did the trick.

Sign In or Register to comment.