0

Within posterous when you hover on an image it displays a box enabling the user to download or view the full size image. Here is the example of how this should work.

enter image description here

I am trying to find out why this does not work in the theme I created Here. Any and all help would be greatly appreciated.

ThomasReggi
  • 55,053
  • 85
  • 237
  • 424

2 Answers2

1

I took a quick look at your code. The span that's supposed to show up; 1 has no id associated with it and two is not showing when you hover over the image. Make sure your javsacript is correct. I think it is most likely being referenced wrong.

    <span id="" class="show">
        <div id="-dl3" style="font-size: 14px; position: absolute; right: 10px; bottom: 0px;">
        <div id="-dl2" class="posterousGalleryLink" style="font-size: 14px; display: none;">Download this gallery (ZIP, null KB)</div>
    </span>
Dave Rottino
  • 1,037
  • 3
  • 22
  • 49
1

something like this

http://jsfiddle.net/amkrtchyan/jCcnC/

Aram Mkrtchyan
  • 2,690
  • 4
  • 31
  • 47
  • Thank you so much for this, so sorry I forgot to mention that I have no control of the javascript within a posterous theme. – ThomasReggi Jan 17 '12 at 18:15