Tagged: anchor links, z-index
Hi guys,
Not sure if you’ll be able to help with this one but here goes. My site uses anchor links to navigate users down the page. The arrows are held in divs with minus top margins and z-indexes but, because of how the layers are, only the top half of the link is click-able. You can see the issue here: http://dalestudios.co.uk
Thanks
Hey tocal!
Thank you for visiting the support forum.
Set the position property of the anchor section to relative. Something like this:
#home_anchor2 {
margin-top: -23px;
z-index: 99999 !important;
position: relative;
}
Regards,
Ismael
You’re a genius Ismael. Thanks!