"No results found" page

Nudaii

Well-known member
Currently when a search gives no result we get something like

SiteName
No results found.
-----


Would it be possible to change it so it says something more like

--
Sorry, we didn't find anything. Try again.
The term or phrase you entered was not found, but you can try a different search.
--
now i know "no results found" is a phrase, yet i can't find anyway to edit where it has the sitename
 
That's the default h1 in the container:

Admin CP -> Appearance -> Templates -> PAGE_CONTAINER

Rich (BB code):
						<xen:hook name="page_container_content_title_bar">
						<xen:if is="!{$noH1}">						
							<!-- h1 title, description -->
							<div class="titleBar">
								{xen:raw $beforeH1}
								<h1><xen:if
									is="{$h1}">{xen:raw $h1}<xen:elseif
									is="{$title}" />{xen:raw $title}<xen:else
									/>{$xenOptions.boardTitle}</xen:if></h1>
								
								<xen:if is="{$pageDescription.content}"><p id="pageDescription" class="muted {$pageDescription.class}">{xen:raw $pageDescription.content}</p></xen:if>
							</div>
						</xen:if>
						</xen:hook>
 
Top Bottom