Quote:
Originally Posted by effpeetee
Is the blue text 'text' or is it an image. I cannot find it in the code. Probably due to my poor eyesight.
Also, won't the text lay over an image if it is in the center?
Frank
|
it is text.. in the code this is the text part:
<div id="pro1">
</div>
which refers to this:
#pro1 { text-align: center; position: fixed; bottom: 50%; margin: 0 auto;}
and this:
$("#div1").mouseenter(function() { $("#pro1").html('<p class="links">F/W 2011-2012 </p>'); });
$("#div2").mouseenter(function() { $("#pro1").html('<p class="links">S/S 2011</p>'); });
$("#div3").mouseenter(function() { $("#pro1").html('<p class="links">F/W 2012-2012</p>'); });
$("#div4").mouseenter(function() { $("#pro1").html('<p class="links">S/S 2012</p>'); });
$("#div1").mouseleave(function() { $("#pro1").html('<p class="links"></p>'); });
$("#div2").mouseleave(function() { $("#pro1").html('<p class="links"></p>'); });
$("#div3").mouseleave(function() { $("#pro1").html('<p class="links"></p>'); });
$("#div4").mouseleave(function() { $("#pro1").html('<p class="links"></p>'); });
which then refers to this:
p.links { text-align: center; margin: 0.0px 0.0px 0.0px 0.0px; font: 20pt Helvetica, Arial; text-decoration: none; color: blue; letter-spacing: 4px;
the solution should be hidden somewhere in there i think?