spicymango
Programmer
Hi, I have a page that is quite long vertically.
It has links like
<a href=cnn.com>Line1</a>
<a href=cnn.com>Line2</a>
<a href=cnn.com>Line3</a>
<a href=cnn.com>Line4</a>
.
.
.
.
.
.
.
.
.
.
.
<a href=cnn.com>Line100</a>
I have a a hidden div statement that appear when someone clicks on the link, but I want that div to appear always at the same place, let suppose on the center of tha page, how could i do that? with absoule poistioning , if the person has scrolled down then they don't sometine even see the div when they click on the link
It has links like
<a href=cnn.com>Line1</a>
<a href=cnn.com>Line2</a>
<a href=cnn.com>Line3</a>
<a href=cnn.com>Line4</a>
.
.
.
.
.
.
.
.
.
.
.
<a href=cnn.com>Line100</a>
I have a a hidden div statement that appear when someone clicks on the link, but I want that div to appear always at the same place, let suppose on the center of tha page, how could i do that? with absoule poistioning , if the person has scrolled down then they don't sometine even see the div when they click on the link
Code:
<div style="position: absolute; left: 610px; top: 80px; height: 400px; width: 100px; ">my stuff</div>