Results 1 to 3 of 3

Thread: Vanishing hyperlink

  1. #1
    Join Date
    Jun 2011
    Posts
    63
    Thanks
    49
    Thanked 0 Times in 0 Posts

    Red face Vanishing hyperlink

    I have an image (Bulgarian flag) with a hyperlink, but hyperlink is active for only part of the picture.
    http://trumpet-sz.blogspot.bg/2016/1...h-edition.html
    Can you fix the code, please?

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    That's due to z-index stacking (because both the image and the element covering it are position relative). The h3 element has a higher default z-index because it comes later in the markup and even though you can see through it to the image, you can't click through it. You can lower its z-index that by making the h3 position static. Or raise the image's z-index by setting its z-index explicitly, to say 10. Put this in a stylesheet for the page:

    a img {z-index: 10;}
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. The Following User Says Thank You to jscheuer1 For This Useful Post:

    balki (12-03-2016)

  4. #3
    Join Date
    Jun 2011
    Posts
    63
    Thanks
    49
    Thanked 0 Times in 0 Posts

    Default

    That solved the problem! Thanks!

Similar Threads

  1. Code vanishing
    By MSP in forum Dynamic Drive scripts help
    Replies: 5
    Last Post: 07-14-2010, 08:58 PM
  2. un-hyperlink
    By discdemo in forum Dynamic Drive scripts help
    Replies: 2
    Last Post: 12-08-2009, 09:52 PM
  3. Need hyperlink help
    By simcomedia in forum JavaScript
    Replies: 0
    Last Post: 09-17-2009, 05:03 PM
  4. Mysteriously Vanishing Footer
    By kuau in forum PHP
    Replies: 6
    Last Post: 05-18-2008, 09:00 PM
  5. MySQL tables vanishing
    By Yesideez in forum Other
    Replies: 1
    Last Post: 05-15-2005, 12:32 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •