Forum Moderators: not2easy

Message Too Old, No Replies

Relatively positioning link at bottom of page

can't click it

         

Adam_C

2:38 pm on Oct 30, 2003 (gmt 0)

10+ Year Member



I'm trying to relatively position a link at the bottom of my page using the following code

<div style="position:relative;top:515px;text-align: center;">
<a href="http://www.widgets-n-midgets.co.uk/">Widgets'n'Midgets</a>
</div>

But when doing this, the link is appearing where I want it, but I can't click it.

Why?

How do I solve this?

Cheers

Reflection

5:30 pm on Oct 30, 2003 (gmt 0)

10+ Year Member



Its most likely that your link is 'under' another element so when you try and click on it you are actually clicking on the other element and not the link.

You have to use z-index to set the stacking order of the elements.

Adam_C

9:35 am on Oct 31, 2003 (gmt 0)

10+ Year Member



Yeah - figured it out. Thanks.