Hi Sonictrip
It looks like you are using the small image with the large image appearing when you mouse over the text "hover to enlarge".
The code here operates on the div class="enl". The div class="feature" is a block for the thumb image which has the class .image_right, and some text but I forgot to give you some starter CSS for that. This should be:
Code: Select all
.feature { margin: 0px; padding-bottom: 15px; display: block; background-color: #ffffff; color: #666666; z-index: 400;}
.image_right { display: block; top: 20px; right: 0px; margin: 0px 0px 10px 10px; z-index: 500; float: right;}
* html .image_right { padding-top: 20px; } /* fixes IE6 bug */
.feature a, .feature a:visited { color: #666666; text-decoration: underline; }
.feature a:hover { color: #666666; text-decoration: none;}
So add that to your stylesheet then give your small image the class "image_right" and your html should read:
Code: Select all
<div class="feature"><img alt="Kitchen Features" src="uploads/images/kitchen_features/kitchen_feature_1.jpg" class="image_right" title="Kitchen Features" /><div class="enl"><a class="ve" href="#nogo">Hover to enlarge<b><img src="uploads/images/kitchen_features/big/_W2S9974.jpg" alt="Corner Units" /></b></a></div></div>
I have removed the br / and /td divs you had in there.
This should now work but you will need to play with the absolute postioning of the large image so it appears where you want.
That will be in this bit of the CSS:
Code: Select all
a.ve b {position: absolute; visibility: hidden; width: 370px; height: 0; border: none; left: -280px; top: -250px;}
The width is the width of the large image so set this to suit and left and top is the absolute position of it relative to the link text "hover to enlarge"
Hope this works for you. Key thing is to tweak the CSS bit by bit so you know what you are affecting until you get the right result.