I have a asp forum and now i whant to make some tooltip on this one.

I whant to show was in the forum when i hit a link.

Se the images and then you understand what i meen

One more thing is if here are someone that can give me some information
how i put in it in the code. I am a dummie on this.

big thanks
Jogge

Recommended Answers

All 5 Replies

hi
use div element, and define following style:

filter:alpha(opacity=50); 
-moz-opacity:0.5; 
opacity:0.5; 
 -khtml-opacity:0.5;

these property is to set opacity.
see ex:

<html>
<head>
<style>
.opec{
	background-color:blue;
	filter:alpha(opacity=50); 
	-moz-opacity:0.5; 
	opacity:0.5; 
	-khtml-opacity:0.5;
	position:absolute;
	color:red;
	height:50;
	width:50;
	left:2;
	top:5;
}
</style>
</head>
<body>
hi this is in body
<div class="opec">
	hi 
</div>
</body>
</html>

similaly other thing also you can design.
remeber left and top is to set the x,y postion of div in screen.

thanks for the tip DangerDev,

but i have a asp forum and there is no html and so on

and i whant that if the forum is like this

text here...... and when i hit this there shall be the text in that post

text here......other text here, and so on

So i meen the forum post shall have a popup and tell what is on in that post,
so it make different for eash post.

It´s the same as the have here on this forum. Hit different links and you have diff. texr

Hope someone understand this

big thanks
jogge

you can embade html/javascript code in jsp. try to fine how in google.
using div element you can create magic.
see this

thanks for the link, but i am lost here now

thanks

Isn´t here anyone that understand what i meen and can give me a hand on this one.

thanks

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.