Search code examples
powerbipowerbi-embedded

Hide the logoBar in power BI


Is it possible to hide or don't display this logoBar of power BI after publishing the report in web ?

enter image description here

Thank you.


Solution

  • I found a way: I created a <div> with background white, height of 10px and translated it up till it hide the power BI logo.
    Don't forget to set its z-index to 1000

    .hider {
      z-index: 1000;
      height: 40px;
      transform: translateY(-80px);
      background-color: white;
    }