Forum Replies Created
-
AuthorPosts
-
You must have valid license to access this content.You must have valid license to access this content.You must have valid license to access this content.You must have valid license to access this content.You must have valid license to access this content.
FocuxTheme Support
KeymasterHi
It’s a device issue, because the mobile device doesn’t have hover behavior, so you have to click twice. There’s only way to disactive the hover effect, edit oldcar.setup.js find the following code
//HOVER FLUID BOX function fluidHover(){ $(".fluid-articles li").hover( function(){ $(this).find('p').css({ color:"#000" }); $(this).css({ boxShadow: '0 0 5px rgba(0, 0, 0, 0.3)', }); var imgHeight=$(this).find('img').height(); var imgtip=imgHeight/2-10; $(this).find('.img').css('top',imgtip-25+"px"); $(this).find('.overlay').css("height",imgHeight+"px").stop(true,true).fadeIn(800); },function(){ $(this).find('p').css({ color:"#666" }); $(this).css({ boxShadow: '0 0 5px rgba(0, 0, 0, 0.1)' }); $(this).find('.overlay').stop(true,true).fadeOut(800); } ); $(".fluid-articles li .overlay").click( function(){ var postlink=$(this).find('a').attr('href'); window.location.href=postlink; } ); }fluidHover();Just remove the last line “fluidHover();”
You must have valid license to access this content.You must have valid license to access this content.You must have valid license to access this content.You must have valid license to access this content. -
AuthorPosts
