fourth link is not visible

mimovil

New Member
When you click the production cube a popup opens up.....the popup under the image has four links....but i can see only three links...how to see the fourth link....http://jsfiddle.net/Lx7kx/7/embedded/result/\[code\]<div class="cubeCellProduction" data-text="Production" data-caption="<a style='padding-left: 30px; font-size: 14px; color: grey;' href='http://stackoverflow.com/' >Work Orders</a> <div> <a style='padding-left: 40px; font-size: 14px; color: grey;' >Projects</a> </div> <div><a style='padding-left: 42px; font-size: 14px; color: grey;' > Work Flow </a></div> <a style='padding-left: 42px; font-size: 14px; color: grey;' >Reports</a>" data-image="http://intra.defie.co/images/Desktop_icons_02.07.13/production.png"></div> $('document').ready(function() { window.setTimeout(function() { $('.cubeCellProduction').each(function() { var htmlText = $(this).attr('data-text'); $(this).append('<div class="cubeTextStyleProduction">' + htmlText + '</div>'); $(this).hover( function() { $(".cubeTextStyleProduction").addClass("hovered").append("<span class='divStockProduction'>Production</span>"); }, function() { $(this).find("span:last").remove(); $(".cubeTextStyleProduction").removeClass("hovered"); }); }); }, 600); });\[/code\]
 
Back
Top