Remove test mode from website

Hi, how do I remove the purple test mode button on my website?
as seen in the image. Or you can view my website at www.ezoceutical.com

In custom code it would look like this:

<style>

.ms-test-label{
 display: none  !important;
}

</style>

We can’t be sure if it can be fixed inside Webflow without custom code, since we would need a read only link for that.

do I put it in the header or body?

I would’ve put it in the header. Let me know if it works, since i noticed that the css is applied inside of the html element.

Sorry, but it doesn’t work.

Try this buddy, it will work:

<style>
.ms-test-label{
 display: none  !important;
}
</style>

<script>
var Webflow = Webflow || [];
Webflow.push(function () {
  $('.ms-test-label ').removeAttr('style');
});
</script>