Sandro has answered this question in my unintentional similar posting:
https://answers.atlassian.com/questions/20506/change-the-default-text-in-the-search-box.
We did that in Confluence 4 with some JavaScript in Browse => Confluence Admin => Look and Feel => Custom HTML:
<script> AJS.toInit(function ($) { AJS.applySearchPlaceholders = function (scope) { var CUSTOM_PLACEHOLDER = "YOUR PLACEHOLDER"; $searchBox = $("#quick-search-query"); $searchBox.attr("placeholder", CUSTOM_PLACEHOLDER); $searchBox.closest("form").find("input[type='submit']").val(CUSTOM_PLACEHOLDER); $searchBox.data("quicksearch", { placeholder: $searchBox.attr("placeholder") || $searchBox.closest("form").find("input[type='submit']").val(), placeholded: true }); if (!$.browser.safari) { $searchBox.val($searchBox.data("quicksearch").placeholder); $searchBox.addClass("placeholded"); $searchBox.focus(function () { var $this = $(this); if ($this.data("quicksearch").placeholded) { $this.data("quicksearch").placeholded = false; $this.val(""); $this.removeClass("placeholded"); } }); $searchBox.blur(function () { var $this = $(this); if ($this.data("quicksearch").placeholder && (/^\s*$/).test($this.val())) { $this.val($this.data("quicksearch").placeholder); $this.data("quicksearch").placeholded = true; $this.addClass("placeholded"); } }); } else { $searchBox.type = "search"; $searchBox.attr("results", 10); $searchBox.attr("placeholder", $searchBox.data("quicksearch").placeholder); $searchBox.val(""); } }; AJS.applySearchPlaceholders(); }); </script>
Dont't forget to replace "YOUR PLACEHOLDER" with the text you want to display.
PS: Please stop asking the same question over and over again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For Doc Theme specificially, you can change this by modifying the following in confluence-install/confluence/WEB-INF/classes/com/atlassian/confluence/setup/atlassian-bundled-plugins.zip/doctheme-x.x.x.jar/doctheme/i18n.properties:
doctheme.global.search.name = Search Confluence
For more details on how to edit files within JAR archives, please refer to this page.
For other themes that inherits from the default one, you can modify this particular line using this method:
quick.search.submit=Search
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.