ismocan
You can open the header block of template file: /templates/ja_focus/tpls/blocks/header.php
Look for this line of code:
<div class="head-search <?php $this->_c('head-search') ?>">
change it to:
<div class="head-search <?php $this->_c('head-search') ?> btn-open">
Then open this JS file: /templates/ja_focus/js/script.js
comment or remove this declaration:
// Head Search
// --------------
(function($){
$(document).ready(function(){
$('.btn-search').click(function() {
$('.head-search').toggleClass('btn-open');
$('.topbar-right').toggleClass('btn-open');
if ($('.head-search').hasClass('btn-open')) {
$('.head-search .form-control').focus();
}
});
// Reset header search when click outsite.
$(document).click(function (e) {
var container = $('.head-search');
if (!container.is(e.target) && container.has(e.target).length === 0)
{
$('.head-search').removeClass('btn-open');
}
});
});
})(jQuery);