Accordion Panels and List Menu don't work if I place html files in subfolders

Hi all,
Switched from Dreamweaver to Muse and I have very limited knowledge of code.
Not an IT expert and not a web developer this is just for my own site.
I have sub-folders in my site. All html files are inside sub-folders except index.
ie contact.html or products.html I move them manually from root to the subfolder, using the easy interface of Dreamweaver. I call the subfolder "en"
so I can have pages such as mysite.com/en/contact.html
In the subfolder I copy and paste from  root the css, images and script folders,
keeping the original css/images/scripts as well, in the root, so index.html is not affected.
and same time the look of the html pages inside the subfolders does not change.
BUT
list menus and accordion panels don't work. I click and there is no movement
How can I solve this ? I know Muse does not allow the creation of subfolders,
everything is uploaded in the root.
When in Dreamweaver I had placed 50 pages in subfolders and I was indexing them in google and bing.
Now can't again put 50 pages in root and can't remove URLs and make new indexing for all these pages
Any help ? many thanks for any assistance.

The iPhone, like the Ipad, uses the Mobile Safari browser, so here's an earlier thread that might give you some insight: http://forums.adobe.com/thread/613494

Similar Messages

  • IPad 2 Rotation, Sleep, and Volume Buttons Don't Work.

    I have an iPad 2 running 7.1.1 (11D201) and just yesterday the sleep sleep and volume buttons don't work, and the screen won't rotate at all.  I have already tried the following:
    Switched the Lock Rotation/Mute settings in General
    Power cycling it
    Held the sleep and menu button to reset it (the button worked for that at least)
    Done a network reset
    Reset All Settings and restored from backup
    Reset All Settings and restored from iCloud
    Erase All Content and Settings and restored from backup
    Erase All Content and Settings and restored from iCloud
    If anyone has any OTHER suggestions besides what I've already tried, I am all ears.  Thanks.

    Go into Recovery Mode per the instructions here.  You WILL lose all of your data (game scores, etc,) but, for the most part, you can redownload apps and music without be charged again.  Also, if you have IOS-7, read this.

  • My Microsoft Intellimouse back and forward buttons don't work in Firefox, but they do in IE and in Windows Explorer. It used to work, now it just stopped. Why and how can I fix this?

    Forward and back buttons don't work in Firefox but do everywhere else.

    Make sure that you set those buttons to the default action in your mouse driver software (Control Panel > Mouse or specific Intellimouse driver software).

  • My earphones mic and volume buttons don't work ever since the iOS 8.1 update! Please help me. One discussion person says they bought a new pair and THEY don't work either. What do I do? I'm about to have a breakdown!

    I rely heavily on my earphones because well... I'm lazy but they don't work. They work on my friend's iPhone who hasn't updated yet but I've updayed and the mic and volume buttons don't work. Please make a correct update!

    Nope, still same problem. I did an install, didn't work. Then I completely removed my IDT driver, restarted, installed the driver, restarted, same problem.
    When I troubleshoot my audio it always asks me which one to troubleshoot. It only works if I do one of the "Speakers / HP - IDT" but I don't know why it has so many devices listed with the same name.
    Also, after I troubleshoot and I can hear audio, if I go to "Manage audio devices" it still shows that no audio device is installed, which is why the webinars won't work.

  • Please help! How can I validate Radio Buttons and List Menu with PHP.

    Hello everyone, I have been learning PHP step by step and
    making little projects.
    The point is I find it easy to learn by doing "practical
    projects."
    I have been reading the David Powers's Book on PHP Solutions
    and it's really great, however there is nothing mentioned regarding
    Validating Radio buttons. I know the book cannot cover every aspect
    of PHP and maybe someone in here can help.
    I have been learning how to process HTML forms with PHP.
    The problem is every book or tutorial I have read or
    encountered fall short on validation.
    I'm wondering how I can learn to validate Radio Buttons and
    Select List Menu.
    I have managed to create validation for all other fields but
    have no clue as to how I can get validation for Radio Buttons and
    List Menu.
    I would also like an error message echoed when the user does
    not click a button or make a selection and try to submit the form.
    I would appreciate any help.
    Patrick

    It's not that default value is "None." In fact it's not. It
    will only be
    "none" when the form is submitted.
    Also if your submit button is names 'send' then
    $_POST['send'] will only be
    set if the form was submitted.
    Make sure you didn't hit the refresh button on your browser
    which usually
    reposts the information. Also make sure you did not reach the
    form from
    another form with the same button names.
    Otherwise paste the snippet.
    Also you can check what fields are set in the post array by
    adding this to
    the top of (or anywhere on) your page:
    print_r($_POST);
    Cosmo
    "Webethics" <[email protected]> wrote in
    message
    news:[email protected]...
    >
    quote:
    Originally posted by:
    Newsgroup User
    > Off the top of my head this should be no different than
    your radio buttons
    > except that 'productSelection' will always fail the
    !isset check when the
    > form is submitted since the default value is "None", and
    therefore always
    > set. :-)
    >
    > So how about this..?
    > <?php
    > if (isset($_POST['send']) and
    ($_POST['productSelection'] == "None"))
    > {echo "Please select a product.";}
    > ?>
    >
    >
    >
    >
    > "Webethics" <[email protected]> wrote
    in message
    > news:[email protected]...
    > > Another question - how do i applied the code you
    just showed me to
    > > select
    > > menu
    > > or select list?
    > >
    > > This is the list:
    > >
    > > <div class="problemProduct">
    > > <label for="productSelection"><span
    class="product_label">Product
    > > Name.</span></label>
    > > <select name="productSelection" id="products"
    class="selection">
    > > <option value="None">-------------Select a
    product----------</option>
    > > <option value="Everex DVD Burner">Everex DVD
    Burner</option>
    > > <option value="Vidia DVD Burner">Vidia DVD
    Burner</option>
    > > <option value="Excerion Super Drive">Excerion
    Super Drive</option>
    > > <option value="Maxille Optical Multi
    Burner">Maxille Optical Multi
    > > Burner</option>
    > > <option value="Pavilion HD Drives">Pavilion
    HD Drives</option>
    > > </select>
    > > </div>
    > >
    > > I thought I could just change the name is the code
    from operatingSystem
    > > to
    > > productSelection.
    > >
    > > Something like this:
    > >
    > > From this:
    > >
    > > <?php
    > > if (isset($_POST[send]) and
    !isset($_POST['operatingSystem']))
    > > {echo "Please select an operating system.";}
    > > ?>
    > >
    > > To this:
    > >
    > > <?php
    > > if (isset($_POST[send]) and
    !isset($_POST['productSelection']))
    > > {echo "Please select an operating system.";}
    > > ?>
    > >
    > > But this does not work, any ideas?
    > >
    > > Patrick
    > >
    >
    >
    >
    >
    > Hey, I tried this about but as you mentioned, since the
    default product
    > value
    > is "None" an error message appears when the page loads.
    >
    > Is there a way to code this things so that even though
    the default value
    > is
    > "None" there ia no error message untle you hit the
    submit?
    >
    > When I applied the code, it messes up the previous code,
    now the operating
    > system is requiring an entry on page load.
    >
    > When I remove the code from the list menu everything
    goes back to normal.
    >
    > I know this is a little much but I have no other
    alternatives.
    >
    > Patrick
    >

  • Spry Accordion panels and Google search

    Hello! I have about 30 pages with at least 15 spry accordion
    panels on each. I've just implemented a local customized google
    search and it looks like Google is able to pull pretty accurate
    search on both the panels and panels content.
    Once presented with the search results, can a user get to an
    OPEN accordion panel, that relates to his search? I hope I've
    explained it clearly, THanks!

    highedwebby wrote:
    > Hello! I have about 30 pages with at least 15 spry
    accordion panels on each.
    > I've just implemented a local customized google search
    and it looks like Google
    > is able to pull pretty accurate search on both the
    panels and panels content.
    Yes, this happens because all of the content is on the page.
    > Once presented with the search results, can a user get
    to an OPEN accordion
    > panel, that relates to his search? I hope I've explained
    it clearly, THanks!
    I've seen some scripts that highlight Google search terms, so
    I suppose that getting the search terms on the destination page is
    possible, but making that leap to the proper panel to open may be a
    little more difficult.
    First you have to figure out which panel the words are
    in,then you have to figure out what if the user is searching for
    three terms and each of those terms is in a different panel, or if
    only one term, and that term is in multiple panels? How would you
    expect that work out?
    You can highlight the words using code such as that discussed
    on this page:
    http://www.kryogenix.org/code/browser/searchhi/
    I'd guess that someone could reverse that code that finds the
    text and then take that find and then walk up the DOM tree to see
    if you are within an accordion panel and then show that panel as
    the default panel on the page.
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert

  • My serial numbers and activation codes don't work

    Hey, anybody out there?  My serial numbers and activation codes don't work and I don't see anyway, through your menus to reach a PERSON!!
    Michelle
    Not much happening out there.

    Try the following:
    Visit www.adobe.com
    Click the MENU link near the upper-right
    Click the ABOUT ADOBE link near the upper-right
    Click the Contact Us link.
    There are some phone numbers there you could try.  I imagine if you call Sales and say you're having a problem they might be able to transfer you to a support line, though I haven't tried it myself.
    I don't think there's much help we can give you here on the forum with that particular problem, unfortunately.
    -Noel

  • I'm trying to get a public link to my pdf file? I tried the system's process and the links don't work

    I'm trying to get a public link to my pdf file? I tried the system's process and the links don't work. I can't even copy the links I have to write them down and then enter them. Is anyone else having this problem. I've seen this question a couple times with no replies.

    Hi mariondouglas,
    Do I understand correctly that you've used Send to send a file that you've uploaded to Acrobat.com? What happens when you send to your own email address? Are you able to click the link in that email, and access the file that way?
    If you're unable to copy the email in the browser window after you've generated a public link, please clear the browser cache, and try again. Or, use a different web browser (for a list of supported browsers, see System requirements | Acrobat.com).
    Please let us know how it goes.
    Best,
    Sara

  • I spilled water on my laptop and my "i", "j" and "k" letters don't work on my laptop. However my main problem is that my password contains an "i" so i am locked out of my computer. Any ideas how I can get around the password and login.

    I spilled water on my laptop and my "i", "j" and "k" letters don't work on my laptop. However my main problem is that my password contains an "i" so i am locked out of my computer. Any ideas how I can get around the password and login. I tried the method where you go into single user mode and type in commands, however that method uses some of the letters that are not working on my laptop.

    You didn't mention which version of OS X your running but there are password reset utilities provided OS X: Changing or resetting an account password (Snow Leopard and earlier) - Apple Support  or  OS X: Changing or resetting an account password - Apple Support
    Alternately you can use an external keyboard to log in and change the password. Make a backup if you don't have one, it's likely that your problems aren't over. If that water continues to migrate downward and fries the logic board your macbook will be toast.

  • MacBook Pro 2.3 os 10.6.8 control-C and Control-v don't work

    On MacBook Pro 2.3 OS 10.6.8, control-c and control-v don't work in any app Please help

    If you mean copy and paste, that's Command c and Command v, not control key.

  • Every day, my keyboard and track pad don't work, so I have to shut my computer off and start it back up. It does this multiple times a day. What can I do to make it stop doing this?

    Every day, my keyboard and track pad don't work, so I have to shut my computer off and start it back up. It does this multiple times a day. What can I do to make it stop doing this?

    Try resetting your SMC and PRAM.
    Resetting the System Management Controller  >>
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101

  • I downloaded CS6 Red Plug-In and added to Package Contents, replaced the current files with the new without backing up, now my RED footage thumbnails and color-correction don't WORK! How do I get my old importerRed file back!!?? HELP!

    I downloaded CS6 Red Plug-In and added to Package Contents, replaced the current files with the new without backing up, now my RED footage thumbnails and color-correction don't WORK! How do I get my old importerRed file back!!?? HELP!

    Try asking in the Premiere Pro  forum seems to be an Adobe Lab for Premiere Pro

  • Mobile wifi mouse back and forward functions don't work

    I just bought the hp wifi mobile mouse model MOWFFKUL and back and forward functions don't work and it's driving me crazy. I bought it for these specific functions. At first I thought that it was a broken mouse. So I went and returned it, got back home, and the same thing. I set the side buttons to other functrion options and they work. What the hell??? just the back and forward buttons don't. I'm losing my mind big time because I REALLY NEED those buttons/functions to work!! All the regular top buttons functrion fine, it's only the back forward setting that DOESN't WORK.

    I restarted my laptop, and the buttons worked! For only 2 minutes. Then nada ever again. What a POS. Come on HP, give a solution. I bought and returned it twice, which makes this my third wifi mouse. What a waste of my time. I think I'm just gonna return this mouse and forget the wifi mouse. Functionality is more important than a freed up USB port. I bought it for the forward/backward buttons specifically. HP used to make wonderful products, but this experience bring that into question now.

  • Tabulation and arrow keys don�t work through ssh

    Hi!
    I just got a solaris 10 on a v240. But I loggin through SSH, tabulation key and arroy keys don� t work. It � s quite nasty because I cannot just repeat a command for example, I�ve to type it allover again. I� m quite surprised because I have an old solaris where it does work without problem. Should I change something in the configuration?
    Thanks

    Is your shell one that you want?
    csh and sh don't support autocompletion or arrow histories. you'd need tcsh or bash or something.
    Darren

  • I Need help. I Change My Number and now imessage don t work.

    I Need help. I Change My Number and now imessage don t work.

    Hi Ivonka88,
    Here are some steps to try troubleshooting your issue with, depending on your specific symptoms:
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/ts4268
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    Cheers!
    - Ari

Maybe you are looking for

  • How do you add a date/time stamp to photo before printing?

    How do you customize a photo?  I want to add a date to a photo before printing.

  • How to make adf security?

    Dear all How to make adf security? I am new adf security. I'm facing security issue. Now i need to secure me application (User, Group, Role etc...) Oracle recommend me use WebLogic internal LDAP or OID. How to manage User, Group, Role deploy after? T

  • Firmware 1.0.1 boot device order - efi password

    Hi. Having an "open firmware" (EFI) password set, firmware version 1.0.1 ignores the password and boots a boot cd like rEFIt boot helper. Boot CDs are always booted first without considering the so called "open firmware" password. This is a security

  • Deploy Windows 8 To Go through SCCM 2012 SP1

    First a little backgroud: I have SCCM 2012 SP1 with MDT 2012 Update 1 integrated. I am using an MDT UDI task sequence to deploy windows 8 and it works perfectly. My Windows 8 image is fairly thin (only containing OS updates and C++ runtimes), and I a

  • Solution manager for ABAPers

    Hi All, Can you please explain me the importance of Solution Manager in an ABAPer's perspective? In which phases of Solution manager, does an abaper come into picture? Thanks in advance.