• Hello, I am having troubles with figuring out how to fix the link button on the portfolio thumbnails. Here is the link to my problem

    https://incube8creative.ca/the-work/

    Currently when you hover over the thumbnails a link icon pops up and you have to aim your mouse to this little icon. I would much rather the whole thumbnail be click-able so users don’t have to be so precise when clicking the work. I was told by the template owner that it in the JS code but he wont further help me with it…This is where i would think it would be located. Help out please, it would be much appreciated!

    //THUMBS ROLLOVER - 2 CLOMUNS
    	jQuery('.grid_image_wrapper_db').hover(
    	function()
    	{
    		if (use_lightbox=='both')
    		{
    			var light_space='43%';
    			var link_space='100%'
    		}
    		if (use_lightbox=='light_only')
    		{
    			var light_space='43%';
    			var link_space='110%';
    		}
    		if (use_lightbox=='link_only')
    		{
    			var light_space='-20%';
    			var link_space='43%';
    		}
    		jQuery(this).find('.grid_colored_block_db').stop().animate({'opacity':0.86}, 300 );
    		jQuery(this).find('.lightbox_btn').stop();
    		jQuery(this).find('.readmore_btn').stop();
    		jQuery(this).find('.lightbox_btn').css({'left':-30,'opacity':1});
    		jQuery(this).find('.readmore_btn').css({'left':470,'opacity':1});
    		jQuery(this).find('.lightbox_btn').animate({'left':light_space}, {easing:'easeOutExpo',duration:550} );
    		jQuery(this).find('.readmore_btn').animate({'left':link_space}, {easing:'easeOutExpo',duration:400} );
    	},
    	function()
    	{
    		jQuery(this).find('.grid_colored_block_db').stop().animate({'opacity':0}, 500 );
    		jQuery(this).find('.lightbox_btn').stop().animate({'opacity':0}, 400 );
    		jQuery(this).find('.readmore_btn').stop().animate({'opacity':0}, 400 );
    	});
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[QUEED Theme] Portfolio thumbnail links’ is closed to new replies.