Links only work once when clicking on them

hello gurus...... please keep responses in laymans terms. I
am NEW to Dreamweaver CS3 but learning more everyday.
I am fixing pages in DW CS3 and then dragging them over old
pages in the FTP.
On my index page under one drop down column of links...the
links work great the first time I click on them, and they work fine
from everyother page, but when I return to the home (index) page
again....the drop down doesn't even show up when I hover over it.
any ideas.....again in laymans terms please..Thanks so
much!

Before worrying about any layout issues, you would have to
fix the 84
problems found here -
http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.greatopenings.com%2F
Some of these relate to javascript functions in the head of
the page, and
you can ignore them. Others relate to a mismatch between the
coding method
used and the doctype on the page. You can fix them by using
DW's FILE |
Convert, and then selecting the desired doctype for this and
other pages.
The rest of them should be fixed (the missing alt attribute
is improper, but
wouldn't cause any layout issues).
Your specific problem is caused by this -
You have TWO 'home' pages on the site: index.htm and
index.html. The
index.html page is the one on which the links work, and which
is served by
default by the server when you initially browse to the site.
The link on
your logo take you to the index.htm page where the menus do
NOT work
properly. Just fix that link so that it takes you to
index.html and you'll
be fine. Then delete the index.htm page from the local and
the remote site.
By the way, the method you have used for those menus is
pretty old and
tired. You'll find much better methods described here -
Check the uberlink and MacFly tutorials at PVII -
http://www.projectseven.com/
and the Navbar tutorial/articles at Thierry's place
http://tjkdesign.com/articles/dropdown/
Or this one (more recent article):
http://tjkdesign.com/articles/Pure_CSS_Dropdown_Menus.asp
Or to get it done fast, go here -
http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"new2dm" <[email protected]> wrote in
message
news:g76reg$b1n$[email protected]..
> www.greatopenings.com
>
> ps its the "about GO" oval
>
>
> Thanks!

Similar Messages

  • Spry Tab link only works once... why?

    Hi all,
    I have a spry tabbed area with 4 tabs on my page. Each tab contains data that is dragged from an MSAccess table. A couple of the tabs have repeat regions. This all works fine.  One of my tabs has a repeat region where I can click on a button image to change a record status from True to False (or visa versa). The click runs the associated vbscript which executes the SQL update statement no problem. However I noticed that when I changed the data on this tab and reloaded the page using a Response.redirect after the sql update was executed, it would default to the 1st tab and not the one I was viewing that contains the repeat region. A quick search led me to the SpryURLUtils.js file which solved that problem by allowing me to specify which tab to load. I appended the relevant code to give me this:
    Response.Redirect("myrecord.asp?" & Request.QueryString & "&tab=1#TabbedPanels1"
    As I mentioned, the tab contains a repeat region. If I click on a button to change the status of that record the page reloads fine and displays the correct tab. But this only happens once... each subsequent time I try to change another record my tab contents disappear. The tabs are still visible and if I click on the tab where I've changed the data the tab content is dispalayed, but obvioulsy this isn't right... it should reload and display the correct tab with each call of the code.If I navigate away from this page and then come back to it I can successfully chnage one record and the results are displayed. Change another record and the changes are made, but the tab contents are not displayed again. The interesting thing is that if I reload/refresh the page the problem occurs staright away on the first record change.
    So my question is 2-fold... Why is this happening and how do I solve the problem?
    Here is the vbscript that updates the record and  does the Response.redirect
    <%
    'Change Notification
    If (CStr(Request("ToggleNotify")) = "ToggleNotify") Then
    dim strSQL
    'check to see if notification is currently true or false
        If cstr(Request.Form("NotifyChanges")) = Cstr("True") Then
        'change notifiaction to false
            strSQL = "UPDATE tblUserAccess SET NotifyChanges=0 WHERE AccessID = " & Request.Form("hiddenAccessID")
        else
            strSQL = "UPDATE tblUserAccess SET NotifyChanges=-1 WHERE AccessID = " & Request.Form("hiddenAccessID")
        end if
        Set MM_editCmd = Server.CreateObject ("ADODB.Command")
        MM_editCmd.ActiveConnection = MM_VBUsers_STRING
        MM_editCmd.CommandText = strSQL
        MM_editCmd.Execute
        MM_editCmd.ActiveConnection.Close
        Response.Redirect("myrecord.asp?" & Request.QueryString & "&tab=1#TabbedPanels1" )
    End If
    %>
    Here is my Repeat region with the associated form
    <%
    While ((Repeat3__numRows <> 0) AND (NOT rsAccessRights.EOF))
    %>
    <form name="frmNotifications" method="post" action="">
      <tr class="PageText">
        <td width="200"><%=(rsAccessRights.Fields.Item("SectionTitle").Value)%>
            <input type="hidden" name="hiddenAccessID" id="hiddenField2" value="<%=(rsAccessRights.Fields.Item("AccessID").Value)%>">
        </td>
        <td width="200">
                    <%If (CStr((rsAccessRights.Fields.Item("NotifyChanges").Value)) = CStr("True")) Then %>
              <input type="image" src="../sitegraphics/accept.png" alt="Submit button">
            <%else%>
              <input type="image" src="../sitegraphics/cross.png" alt="Submit button">
            <%end if%>
        <input type="hidden" name="ToggleNotify" value="ToggleNotify">
        <input type="hidden" name="NotifyChanges" id="test" value="<%=cstr((rsAccessRights.Fields.Item("NotifyChanges").Value))%>">
       </td>
    </tr>
    </form>
      <%
      Repeat3__index=Repeat3__index+1
      Repeat3__numRows=Repeat3__numRows-1
      rsAccessRights.MoveNext()
    Wend
    %>
    And here is the bit at the bottom that specifies the default tab if nothing is passed in the URL
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1", {defaultTab: params.tab ? params.tab : 0});
    //-->
    </script>
    Sorry for the long post!
    This is my first dabble with Spry stuff, so I'm a bit green. If anyone can explain to me why this is happening that would be most apopreciated. If anyone can tell me how to solve the problem I'll send them a big e-kiss!
    Not sure how impotant this is but it happens in both Firefox and IE8.
    Thanks in advance
    Dan

    Hi Ben, thanks for taking the time to read my query.
    The site in question is an intranet site, so I am unable to give you a link to the page. Would the entire page of code rather than just the odd bits help?
    Cheers
    Dan

  • My apps don't work/after update/4th/ did up dates yesterday, now none of my apps are working. When click on them my screen blicks

    When I did updates last night about videos. Now non of my apps are working. When I click on them the screen blicks on and off. Everything else see fine.

    - Have you tried to reset yur iPod?
    Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    -Next would be to restore the iPod from backup via iTunes
    - Last would be to restore you iPod to factory defaults/new iPod via iTunes since there may be corruption that is in your backup.

  • First click on link to new tab works, Second link only works on third click, second click ignored.

    Sounds just like the title, very repeatable on this system.
    1. I middle-click on a link to open it on the new tab, it works and I see the new page load in the new tab.
    2. I then middle-click on another link (think google search results) and nothing happens.
    3. Then I click again, and the link i am on loads.
    4. repeat step 2-3 on all future links.
    This is weird, and driving me nuts.
    I have uninstalled and reinstalled Firefox, Including resetting the profile. Running in safe mode does not fix the issue.
    Any suggestions?

    You should check your security software:
    Expired security software causing problems should be removed since it can't be updated.
    All installed Firefox extensions - many security products install them.
    Whether any security software has been uninstalled. Often, parts of uninstalled security software are left behind. If security software needs to be removed, uninstalling from Add/Remove Programs in Windows is always the safest method. If there are problems uninstalling, some companies offer a removal tool.
    Clean installation: Close Firefox completely. (File->Exit on Windows/Linux, Firefox->Quit on Mac)
    Rename the Firefox installation folder or move it elsewhere.
    Windows: This is usually C:\Program Files\Mozilla Firefox for 32-bit systems and C:\Program Files (x86)\Mozilla Firefox for 64-bit systems. "Mozilla Firefox" can be renamed to "Old Firefox"
    Mac: This is usually Macintosh HD/Applications/Firefox.app. Macintosh HD/Applications can be opened in Finder, and Firefox can be dragged to Trash.
    Linux: The install location varies based on distribution and installation method. Linux distributions usually don't put Firefox in its own folder, so this method can't be used.
    Download Firefox again from mozilla.org and install. (Installation instructions for Windows, Mac, Linux )
    If this fixes the problem, you can optionally check the old install folder for global extensions, components, or corrupt/locked files.

  • Image links only work once!!!!!

    All help appreciated on this one. There are 3 pics of dogs, "about us", "services", and "pricing" - I have attempted to make them links but they only seem to work one time and the rollovers stop working. What am I doing wrong???
    http://www.moodydesign.net/dog_brigade/index.html
    Thanks folks

    Hi,
    first: in the related files "services.html" and so on there are missing (look source code) the references to other directories. For example in "services.html" you should add:
    <div id="toplinkPan">
        <div id="toplinkfastPan"><a href="aboutus.html"></a> </div>
        <div id="toplinksecondPan"><a href="services.html"></a> </div>
        <div id="toplinkthirdPan"><a href="pricing.html"></a> </div>
         aso.
        <div id="toplinksecondPan"></div> and  <div id="toplinkthirdPan"> I would delete.
    And in addition, you should better delete the spaces in your filenames,
    "about _us.html", should better be read as "about_us.html" or "aboutUs.html".
    Hans-G.

  • When i surf in Safari i get green marked "high lights" in normal text which links to ads if I click on them. can I get rid of that?

    When i surf in Safari i get green marked "high lights" in normal text which links to ads if I click on them. can I get rid of that?

    "When i surf in Safari i get green marked "high lights" in normal text which links to ads"
    Malware causes that ...
    Run the removeal tool here >  The Safe Mac » Adware Removal Guide
    Safe, easy to use, and only takes a minute or two.

  • Pinch zoom-in/out only works once in Safai

    Outside of Safari, the pinch gesture works normally. In Preview it will zoom in or out as deep as I need. But when I try and use the gesture in Safari, it will only work once until I 'CMD' + '0' or click "Actual Size" in the View tab. It doesn't zoom on a gradient either. Pinch-open is the equivalent of 'CMD' + '+' and pinch-close is the the equivalent of 'CMD' + '-'. After I make the gesture once, I can pinch all I want and nothing happens. I need to revert the page to its original size for the gesture to work again (still only once).
    I have an i7 Macbook Pro running 10.6.8. Can anybody help me out?

    Sorry, I didnt do a good enough job explaining my issue/bug above. I can't attach a screen shot becuase of where I work and what this content is so I will do the best I can explaining it in text.
    I have a row of buttons created in InDesign that have no effects, no rollovers and lets just call them Apple In, Apple Out, Orange In, Orange Out, Banana In, Banana Out, etc.
    The Apple In button invokes an animation called Apple Fade In. Apple Out simply fades out the content animation. All of the other buttons function the same way. In my exported .swf I can click Apple In and I get my content as expected, I click Apple Out and away it goes. All other buttons work the same way, as expected. If I go through all my fruit and now I want to go back and display the Apples again. I click Apple In and NOTHING happens! If I click Apple Out the fade out animation works just fine, as many times as I want to click it, I get a flash of the content and it fades right out. The "In" buttons no longer work for any of the fruit after the initial "In" animation plays.
    In the Animation Panel I have the animations set to Play Once and Dont Hide. In the Layers Panel I have a layer called Apple Fade. In that Layer Group/Set I have Apple Fade Hack which consists of a native ID square no stroke and no fill grouped with my Apple content on "the stage." Also in that Layer Group/ Set is a collection of bitmap images, text, and vectors called Apple. I created the content first on a layer Apple, when I created the group with the blank square ID bumped the original content group under the parent layer and added another sub-layer called Apple Fade Hack. These two are indented and under the top level Apple Layer. I could probably get away with attaching a screen shot of the timing, layer, and animation panels if I had to.
    Thanks

  • Command Windows.open only works once

    Hi all,
    Iu2019m using javascript command window.open to open a new browser window from a html link webui and is working fine.
    The issue I have is this only works once. If you close the window that you had opened, and click again in the link it doesnu2019t work. It only works if you call another link before. It seems there is a kind of cache in somewhere.
    Do you have any idea?
    Thanks in advance.
    Fernando.-

    Fernando,
      Change ur mywindow name every time.Kindly go through following code. 
    CALL FUNCTION 'GENERAL_GET_RANDOM_STRING'
      EXPORTING
      number_chars        = 3
      IMPORTING
      RANDOM_STRING       = mywindow
    var lr_window;
    lr_window = window.open("<%= lv_id%>","<%= mywindow%>","resizable=1,width=1100,height=674,fullscreen=yes");
    if (window.focus)
    {lr_window.focus()}
    lr_window.moveTo(0, 0);
    <%
      clear lv_id.
    %>
    <%-- delete lv_window; --%>
    <%-- mywindow.close(); --%>
    <%
      endif.

  • My podcasts do not show the pictures only the sound when I import them to iTunes from Garage Band.  How do I get the pictures to show up in iTunes?

    My podcasts do not show the pictures only the sound when I import them to iTunes from Garage Band.  How do I get the pictures to show up in iTunes?

    Well, all I can tell you is that if your file is an m4a with chapter markers, those markers having suitably sized images attached, and you drag it into the Music area of iTunes (so that it appears as a song) in List view, when you play it and then command-click on the small image in the header (next to the progress bar) you should see your embedded images.
    If this isn't happening the best place to ask would be in the GarageBand forum: my own experience of GB is rather out of date and in any case I've never used it for podcasting.

  • JCOM only works once

    I have a web application that was originally developed using J-Integra
    1.5.3 -- it works great in tomcat 4.1, and the classes themselves can
    also be tested/exercised outside of tomcat, where they work perfectly
    as well.
    Now that the application is mostly finished with development, we want
    to deploy this to our BEA Weblogic 8.1 servers. The problem
    is that, after turning on JCOM, and removing the external jintegra
    jars (using only the weblogic versions now), I can get the app to
    work properly exactly once after startup. That is, I can start
    Weblogic, load the JSP page I use as a tester in my browser, and it
    works as it should. If I hit the refresh button, I get a
    RuntimeException like this:
    java.lang.RuntimeException:
         at com.linar.jintegra.StdObjRef.invoke(StdObjRef.java:55)
         at com.linar.jintegra.Dispatch.vtblInvoke(Dispatch.java:763)
         at jsp_servlet.__index._jspService(__index.java:181)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
         at
    weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(Servle
    tStubImpl.java:1053)
         at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :387)
         at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :305)
         at
    weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(W
    ebAppServletContext.java:6291)
         at
    weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubjec
    t.java:317)
         at
    weblogic.security.service.SecurityManager.runAs(SecurityManager.java:97)
         at
    weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
    ntext.java:3575)
         at
    weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
    :2573)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
    I also see this in my weblogic logs:
    <Jul 8, 2003 2:14:05 PM EDT> <Error> <COM> <BEA-210000> <100680] *: >
    and thats all the information I get.. I have tried to crank up the
    jintegra logging as high as I can (using both "
    com.linar.jintegra.Log.logImmediately(3, "c:\\temp\\jintegra.log");
    " in the constructor, and by supplying
    "-DJINTEGRA_LOG_FILE="c:\temp\jintegra2.log" -DJINTEGRA_LOG_LEVEL=3"
    on the startup line for weblogic, but gotten only as far as
    c:\temp\jintegra.log being created.. no contents in it, and
    jintegra2.log (the one created from the command line) isnt created at all.
    so, I am at a loss... it does work once, and I absolutely no
    information as to why it fails after that first time. Any ideas would
    be appreciated. thanks.

    not sure exactly why it would only work once, but I
    personally dont like using a listener for simple button actions.
    If it were me, i would just use standard button actions and
    make the caption fade in and out with an alpha tween.

  • Event only works once

    Hi all!
       I'm trying to do a movieclip that has 2 buttons that change the content of a flvplayer.
       The problem is that the buttons only work once, after that the event listener isn't triggered (I think) I have no removeEventListener in my code for those events so I'm totally lost as to why is this happening.
       My code is this:
    stop();
    var correr:Boolean = true;
    Globals.vars.videoP = CM_player;
    SnowManInst.addEventListener(MouseEvent.MOUSE_DOWN, mudarVideo_SM);
    bananaKingInst.addEventListener(MouseEvent.MOUSE_DOWN, mudarVideo_BK);
    addEventListener(MouseEvent.MOUSE_DOWN, pararFilme);
    function pararFilme(e1:MouseEvent){
        trace("pararFilme "+Globals.vars.videoP);
        Globals.vars.videoP.stop();
        correr = false;
        removeEventListener(MouseEvent.MOUSE_DOWN, pararFilme);
        addEventListener(MouseEvent.MOUSE_DOWN, correrFilme);
    function correrFilme(e1:MouseEvent){
        trace("correrFilme");
        Globals.vars.videoP.play();
        correr = true;
        removeEventListener(MouseEvent.MOUSE_DOWN, correrFilme);
        addEventListener(MouseEvent.MOUSE_DOWN, pararFilme);
    function mudarVideo_BK(e1:MouseEvent){
        trace("mudar video BK");
        Globals.vars.videoP.stop();   
        gotoAndStop(2);
    function mudarVideo_SM(e1:MouseEvent){
        trace("mudarVideo_SM");
        Globals.vars.videoP.stop();   
        gotoAndStop(3);
    Any help would be greatly appreciated.

    it's not clear what you're trying to accomplish with that code but there are a few reasons that might fail.
    to starty, you should understand that first a button event is dispatched, then a main timeline event is dispatched (and the main timeline listener toggles between two listener functions) and finally you go to a different frame and any code in the other frame is executed.
    so, that's a pretty screwy setup.  you should remove the main timeline listeners and their functions and it's not clear you need to direct the main timeline to another frame.

  • I recently purchased the 16GB 5s. I didn't notice this before, but when I attempt to take a photo with the flash in the "on" position, the flash only works sporadically when I take a picture with the phone vertical. Anyone else with this problem?

    I recently purchased the 16GB 5s. I didn't notice this before, but when I attempt to take a photo with the flash in the "on" position, the flash only works sporadically when I take a picture with the phone vertical. Anyone else with this problem?

    I recently purchased the 16GB 5s. I didn't notice this before, but when I attempt to take a photo with the flash in the "on" position, the flash only works sporadically when I take a picture with the phone vertical. Anyone else with this problem?

  • Link to mail only works once on Chrome (windows)

    Hi all,
    I have two links (both for the same e-mail address):
    The first:
    <s:Label text="CLIQUE AQUI!"
             useHandCursor="true"
             buttonMode="true"
             click="navigateToURL(new URLRequest('mailto:[email protected]'), '_self');"/>
    The second:
    <s:RichEditableText editable="false">
         <s:content><s:p><s:a href="mailto:[email protected]" target="_self">
              <s:linkHoverFormat>
                   <s:TextLayoutFormat color="#FFFFFF" textDecoration="underline"/>
              </s:linkHoverFormat>
              <s:linkNormalFormat>
                   <s:TextLayoutFormat color="#FFFFFF"/>
              </s:linkNormalFormat>
              <s:linkActiveFormat>
                   <s:TextLayoutFormat color="#FFFFFF"/>
              </s:linkActiveFormat>
                   <s:span>[email protected]</s:span>
              </s:a></s:p>
         </s:content>
    </s:RichEditableText>
    The problem is that they both work fine... once. If I click on them, they both open an Outlook window for a new message. After closing that window, if I click on them again nothing happens (when using chrome on windows, apparantely on mac it's ok).
    You can test here: http://consusimobiliaria.co.ao (click on the e-mail link in the CONTACTOS setion on the left)
    How can I workarroud this?
    Best regards,
    Jorge

    The example that you gave is great for opening a tab in a new page.To open panels on the same page see here http://labs.adobe.com/technologies/spry/samples/tabbedpanels/tabbed_panel_sample.htm
    Gramps

  • Links in Email Mesages Don't Redirect When Clicking on Them

    I get a daily email from Howtogeek.com which contains a section called "What We're Reading" which contains a list of articles from various websites and the corresponding links to these articles. I've noticed recently--within about the past month or so--I get 404.php errors whenever I click on one of these links in Firefox. When I open the emails from Howtogeek.com in Internet Explorer and click on the hyperlinks in the "What We're Reading" section, there is no problem with redirecting. How should I correct the problem(s) to get the hyperlinks to work in Firefox? Specs on the versions of Firefox and WIndows, as well as installed plugins, are listed below. Thanks for any help!

    Some have noticed problems like this. Check this.
    On your e-mail, right click and select '''Copy Link.'''
    Open a new tab / window on Firefox. '''Paste''' the
    link to the address bar. Does it look okay? Then press enter.
    If you get that error again, try this;
    Clear the address bar, paste the link again.
    Does the link start with '''http://''' or '''www''' ?
    If not, add one or the other.

  • Quick Find only works once in a Firefox session

    Suddenly, "Quick Find" only works the first time I type in a Firefox session. From the second time onward, the Quick Find bar no more appears. I tried clicking on the "/" key, but no good.
    I have tried un-check and then check again the "Seacrh for text when I start typing" option. But no good, either.
    How can I get it fixed?

    Have you seen
    * [[searching within a page#w_quick-find]]_quick-find
    Try using the single colon ' instead of the slash /
    I also note you may still be on Firefox 9, so it may be worth updating to the current firefox 11. <br/>There is also an old article
    * [[quick find bar opens when typing in text fields]]
    Try Firefox in [[safe mode]]
    * no need to make changes in the first window just click on continue.
    * if problms continue then whilst in safe mode also ensure you are only using the defult theme, and disable all plugins.

Maybe you are looking for

  • Inserting image into a slide

    I'm trying to edit a keynote presentation that was handed to me and I'm totally new to the program. I want to insert some new images into a slide. When I open the slide and click on the first image, all of the appear in a line at the bottom. OK, seem

  • How can i separate 4 files to individual files that are on 1 email?

    How can I separate 4 files to individual files that are all on one email?

  • Flex client side authorization

    Hi I am creating a flex client application with J2EE server. I want to implement authorization of logged in user based on his role, in flex client side. I can implment authorization of resource access like calling destinations, server resources etc.

  • Software upgrade while tethering has frozen phone

    I tried upgrading my iPhone 4 to the 4.1 software. My internet connection is via tethering. When my phone restarted, it lost the internet connection and is now frozen on a screen which shows a picture of a CD with the word "iTunes" below it, and then

  • IPHONE 3G NEED HELP!!! :(

    I have an iphone 3g i have hard reset it about 10 times in the last month! it wont turn on anymore and i dont know what to do anymore! if anyone can help please reply A.S.A.P as i need it.