I saw and read those both throughly. Thick Box was nice, but wasn't sooo apropriated for my need as I just wanted a simple comment. But then CSS popups was my key to resolve this problem, thanks a lot.
I showed me how a message could change in a certain spot, it .....still.... wasn't exactly what I wanted so I let my creativity out and played a bit with CSS. After about half a hour I got out something very nice working in Firefox. I might send the code. Big part of the credits go to meyerweb.com
first my css file (part of it, the important part)
Code:
td.hidden { border-style: hidden;
border-width: 0px;
margin: 0px;
padding: 0px;
}
span { display: none;
position: absolute;
background-color: #FFFFF5;
border: solid 1px #333333;
text-align: left;
padding: 3px;
margin-top: 15px;
margin-left: 15px;
}
td.hidden:hover span { display: block;
}
than each td has:
HTML Code:
<td class="hidden">an image or text<span>This sort of comment box<br>support multiple lines<br>and you could even display pictures</span></td>
you can also get this working on <img> instead if you put it inside the <td> and with no text, or change it so you have to click on the "image" for the comment to appear: "td.hidden:active span".
Unfortunately, theres a small problem with cross-over, as IE doesn't recognizes pseudo-classes for <img> and <td>, it does not display the span (maybe there could be a chance if you wrap the <img> between a <a>, but I never tested this)
maybe you have also notived that I didn't put "top: xxx; left: xxx;", this was made to get the position of the box dinamically. It will display usually right below the <img> (or <td>), and with margins you can adjust it (something like relative positioning but without using space

)
This would be great if there would be a way to display it on IE.
Schimassek... (tested the code on FF and just worked fine)