Results 1 to 4 of 4

Thread: Nudging text

  1. #1
    Join Date
    May 2005
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Nudging text

    http://www.dynamicdrive.com/dynamicindex10/nudge.htm

    Is it possible to make this nudging text become a link? Or to at least have one word in it be a link?

    Your help is very much appreciated.....Lindy

  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

    Easier to have the entire text be the link (from the demo, additions in red):

    Code:
    <h2><a href="http://www.dynamicdrive.com"><div id="jumpx" style="color:green"></div></a></h2>
    - John
    ________________________

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

  3. #3
    Join Date
    May 2005
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default More on Nudging Text

    http://www.dynamicdrive.com/dynamicindex10/nudge.htm
    Thank you for that work around. I even added code to allow it to open in a new window. It can be viewed here temporarily. http://www.buddiesbuddies.org/2index.htm For some reason, I have to aggressively click the link in order for it to work. Thanks for all your help.

  4. #4
    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

    Quote Originally Posted by lindyrae2
    I have to aggressively click . . .
    That's because you have two divisions with the id jumpx, one with a link, one without a link. The browser is unsure which one you are clicking on. Change this:
    Code:
    <h2><a target=_blank" href="http://www.buddiesbuddies.org/transition.htm"><div id="jumpx" style="color:red"></div></a></h2> 
    <h2><div id="jumpx" style="color:navy"></div>
    to this:
    Code:
    <h2><a target=_blank" href="http://www.buddiesbuddies.org/transition.htm"><div id="jumpx" style="color:red"></div></a>
    - John
    ________________________

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

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
  •