Here you can find JavaScript that will display the
global navigation on your search results page as by default its hidden.
********************************
<script>
var refElm = document.getElementsByClassName('ms-searchCenter-refinement');
if (refElm.length > 0) {
// Unhide the title row
document.getElementById('s4-titlerow').setAttribute('style', 'display:block !important');
// Set the Site Title
document.getElementById('DeltaPlaceHolderPageTitleInTitleArea').innerHTML = 'Search Center';
// Hide the search icon
document.getElementById('searchIcon').style.display = 'none';
// Remove the top margin
refElm[0].style.marginTop = 0;
// The following lines are only needed for firefox
var css = '#s4-bodyContainer #s4-titlerow { display: block !important; }',
head = document.getElementsByTagName('head')[0],
style = document.createElement('style');
style.type = 'text/css';
style.appendChild(document.createTextNode(css));
head.appendChild(style);
}
</script>
********************************
To put this JavaScript to search result page you need to insert Script Editor Web Part.
Result should be something like this:
No comments:
Post a Comment