Change the Browser Title of the White Label Editor
You can change the browser title of the White Label editor to your own custom title:
- From the dashboard, select click White Label, and select Custom Branding.
- Click HTML/CSS (located in the Edit with HTML/CSS section).
- Add the following script:
<script> var _newTitle = "Enter New Title Here"; var _titles = document.getElementsByTagName('title'); for(var i = 0;i<_titles.length;i++) { _titles[i].innerHTML = _newTitle } </script>
- Change Enter New Title Here to the title you want to use.
- Click Done.
- Click Save Changes.
Updated on: 06/01/2026
Thank you!
