Hi jscarfe,
You can apply the mega-dim to Search box on JA Argo template by openning templatesja_argojsscript.js file, then replace lines from 490-498 th:
$('#t3-mainnav .nav > li').hover(function(event) {
if(btnnav.css('display') == 'none' || $(this).closest('.nav').parent().hasClass('head-social')){
if($.inArray(this, retain) == -1){
retain.push(this);
}
clearTimeout ($(this).data('dimTimeout'));
dim.addClass('active');
}
},
with
$('#t3-mainnav .nav > li,#t3-mainnav .head-search').hover(function(event) {
if(btnnav.css('display') == 'none' || $(this).closest('.nav').parent().hasClass('head-social') || $(this).parent().hasClass('head-search')){
if($.inArray(this, retain) == -1){
retain.push(this);
}
clearTimeout ($(this).data('dimTimeout'));
dim.addClass('active');
}
},
Remember to backup your file before applying change.