Skip to main content

Change the Browser Title of the White Label Editor

The article explains how to customize the browser title of the White Label editor using a script in the HTML/CSS settings.

Justin avatar
Written by Justin
Updated over 4 months ago

You can change the browser title of the White Label editor to your own custom title:

  1. From the dashboard, select click White Label, and select Custom Branding.

  2. Click HTML/CSS (located in the Edit with HTML/CSS section).

  3. 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>

  4. Change Enter New Title Here to the title you want to use.

  5. Click Done.

  6. Click Save Changes.

Did this answer your question?