Forum Replies Created

Viewing 10 posts - 5,251 through 5,260 (of 6,341 total)
  • Author
    Posts
  • in reply to: Button Color(s) #2881
    You must have valid license to access this content.
    in reply to: Different home for mobile #2880
    You must have valid license to access this content.
    in reply to: Google Maps #2879
    You must have valid license to access this content.
    in reply to: Images order and scrolling #2872
    You must have valid license to access this content.
    in reply to: Button Color(s) #2871
    You must have valid license to access this content.
    in reply to: Mobile Homepage – Double Tap Links #2870

    Hi

    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();”

    in reply to: Customizing Buttons #2869
    You must have valid license to access this content.
    in reply to: Warning Unkown #2863
    You must have valid license to access this content.
    in reply to: Google Maps #2862
    You must have valid license to access this content.
    in reply to: Different home for mobile #2861
    You must have valid license to access this content.
Viewing 10 posts - 5,251 through 5,260 (of 6,341 total)