Mac IE5.2-links in nested DIV not active?!?

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Mac IE5.2-links in nested DIV not active?!?

    :disgust;

    I have a simple web layout that's turning into a nightmare. I'm using a series
    of nested DIV tags to achieve a site that is horizontally centered. One quirk
    (and quick side note) is that the designer put a 2 pixel border around all the
    content, so my code is getting a little too nested for my liking but it seems
    necessary to achieve the approved design.

    The code for this mess is attached below.

    So the problem here is that the links in div id "nav" have the appearance of
    being active links in Mac IE 5.2, but you can't click on them. There's no
    response.

    All other browsers test fine.

    Any clues?



    <div id="wrap">
    <div id="wrapBackground">
    <div id="masthead"><img src="images/masthead.jpg" /></div>
    <div id="leftBar"><img src="images/leftNav.gif" /></div>
    <div id="nav">
    <ul id="navList">
    <li><a href="http://www.google.com">Link 1</a></li>
    <li><a href="http://www.google.com">Link 2</a></li>
    <li><a href="http://www.google.com">Link 3</a></li>
    <li><a href="http://www.google.com">Link 4</a></li>
    <li><a href="http://www.google.com">Link 5</a></li>
    </ul>
    </div>
    </div>

    jasonLampitt Guest

  2. Similar Questions and Discussions

    1. map with active areas (links)
      hey, i'm looking for a way to create a map like this one : http://web.microconcept.com/html/index.php thank you very much
    2. viewing flash nested in CFIF with active content workaround
      thanks to the IE update, some of us including myself are still trying to catch up on this topic and the revisions required to make our sites work...
    3. active x work around issue for .cfm when nested in CFIFtags- not showing?
      OK, using the dreamweaver 8 flash auto-fix that adds the javascript code around my flash object tags has caused it to not work in my .cfm page where...
    4. Active links from 1st image on 2nd image
      Newbie here. I opened a new document with flash 2004 pro. I loaded in 1.jpg and flash asked if I wanted to load in all 5 that were numbered 1...
    5. ASP ERROR: error '8002801d' -> Library not registered. : my Active Server Pages are not so active.
      I've got two IIS servers. One public and one staging. On the public server the ASP code works fine however on the staging server I've started...
  3. #2

    Default Re: Mac IE5.2-links in nested DIV not active?!?

    > but it seems
    > necessary to achieve the approved design.
    Probably not. Why?
    > So the problem here is that the links in div id "nav" have the appearance
    > of
    > being active links in Mac IE 5.2, but you can't click on them. There's no
    > response.
    I'm guessing you have used "layers" and some layer is masking those links.

    Can you post a link to the page?

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "jasonLampitt" <webforumsuser@macromedia.com> wrote in message
    news:dmsleb$9je$1@forums.macromedia.com...
    > :disgust;
    >
    > I have a simple web layout that's turning into a nightmare. I'm using a
    > series
    > of nested DIV tags to achieve a site that is horizontally centered. One
    > quirk
    > (and quick side note) is that the designer put a 2 pixel border around all
    > the
    > content, so my code is getting a little too nested for my liking but it
    > seems
    > necessary to achieve the approved design.
    >
    > The code for this mess is attached below.
    >
    > So the problem here is that the links in div id "nav" have the appearance
    > of
    > being active links in Mac IE 5.2, but you can't click on them. There's no
    > response.
    >
    > All other browsers test fine.
    >
    > Any clues?
    >
    >
    >
    > <div id="wrap">
    > <div id="wrapBackground">
    > <div id="masthead"><img src="images/masthead.jpg" /></div>
    > <div id="leftBar"><img src="images/leftNav.gif" /></div>
    > <div id="nav">
    > <ul id="navList">
    > <li><a href="http://www.google.com">Link 1</a></li>
    > <li><a href="http://www.google.com">Link 2</a></li>
    > <li><a href="http://www.google.com">Link 3</a></li>
    > <li><a href="http://www.google.com">Link 4</a></li>
    > <li><a href="http://www.google.com">Link 5</a></li>
    > </ul>
    > </div>
    > </div>
    >

    Murray *TMM* Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139