Navigation problems within my website folders

Here's my problem... I created folders within the main folder for my website on dreamweaver in order to eliminate the ".html" at the end of some of the page links within my website. So Before where it would say www.ybcreations.com/ybyoga.html it now says www.ybcreations.com/ybyoga. It just looks nicer and cleaner. But here is the problem, I have a menu that pops up for each and every page that is the same for each and every page including the main page and when you are within the link www.ybcreations.com/ybyoga, and click in the menu to be renavigated to, say, the energy work page, it then generates in the browser as www.ybcreations.com/ybyoga/energywork instead of www.ybcreations.com/energywork. I'm trying to figure out how to fix this but so far I am hittind dead ends. i know there has to be a way. If you can help please follow the same direction i stated above.
Go to www.ybcreations.com
then roll the mouse over where it says "Kundalini Yoga" underneath the "Special Events" tab. Click on Kundalini yoga.
From there hover over the "Special Events" tab again and click on "Energy Work", and see what happens.
ybyoga and energywork are the only pages that i've created special folders for to eliminate the ".html" at the moment. But I want to make this for all of the pages.
Please help me.

You made this bed by over complicating your site. Simple solution, take your pages out of sub-folders.  Nobody but you cares about the .html extensions. IMO, it's a very poor reason for using sub-folders.
About linking & navigation:
http://help.adobe.com/en_US/dreamweaver/cs/using/WScbb6b82af5544594822510a94ae8d65-7c44a.h tml
Presently, you must be using document relative link paths.  Either switch to Site Root Relative links which will likely work on your remote server but fail to test locally.  Or use absolute URLs (http://).  The downside with this is that DW won't be able to manage links for you.
Nancy O.

Similar Messages

  • Navigation Problems within Notes

    Hi.  I recently purchased an iPhone 4s and I'm running OS 5.01.
    Sometimes when I go into the Notes application and a note within it I lose the title/menu bar at the top and I can't get out of the current note. I've got the trash can and reply at the bottom, but no "left/right" navigation and no "add new" ("+" sign) or Notes title up top.  Tapping on the very top bar (which indicates carrier, signal strength, etc.) produces nothing and tapping within the note obviously only brings up the keyboard, which I then can't get out of.
    Before I get the token responses of "reset your phone", or "exit out and return to the program", let me just say that a reset of the phone will correct this but for obvious reasons I don't want to have to keep doing this and would rather know what I'm doing wrong inside the app. 
    Not sure if anyone else has this problem?  If the solution is something easy that I've missed, please accept my apologies in advance but right now I'm stumped.
    Thanks!

    You made this bed by over complicating your site. Simple solution, take your pages out of sub-folders.  Nobody but you cares about the .html extensions. IMO, it's a very poor reason for using sub-folders.
    About linking & navigation:
    http://help.adobe.com/en_US/dreamweaver/cs/using/WScbb6b82af5544594822510a94ae8d65-7c44a.h tml
    Presently, you must be using document relative link paths.  Either switch to Site Root Relative links which will likely work on your remote server but fail to test locally.  Or use absolute URLs (http://).  The downside with this is that DW won't be able to manage links for you.
    Nancy O.

  • Can MDAC installation cause navigation problems within the portal?

    Hello,
    I have a client who having problems loading page links in our second level navigation.  Evertime time she clicks on node to expand the tree of links, she gets a "loading" message.  I see this all the time but this message doesn't go away. She also gets a javascript error on the page stating it cannot find the specify module.  She notice the problem around the time of her MDAC file installation.  Do anyone know if this can cause a problem for navigation on the portal?
    Thank you,
    Francis

    You made this bed by over complicating your site. Simple solution, take your pages out of sub-folders.  Nobody but you cares about the .html extensions. IMO, it's a very poor reason for using sub-folders.
    About linking & navigation:
    http://help.adobe.com/en_US/dreamweaver/cs/using/WScbb6b82af5544594822510a94ae8d65-7c44a.h tml
    Presently, you must be using document relative link paths.  Either switch to Site Root Relative links which will likely work on your remote server but fail to test locally.  Or use absolute URLs (http://).  The downside with this is that DW won't be able to manage links for you.
    Nancy O.

  • PJC tab-key navigation problem within bean  (FORMS intercepting tab key??)

    Using Forms 10.1.2.3, IE7, JRE 1.6
    When attempting to navigate within the bean area, it appears as if FORMS is suppressing the keyEvent when the tab key is pressed. This means that I cannot use tab or shift-tab to navigate within the PJC's editable fields/buttons. I can click on them, enter data within them, but tab is somehow intercepted. When I place my PJC within a normal (non-forms) Java window, everything works fine.
    Documentation that I've read seems to indicate that tab should navigate perfectly fine within the bean area.
    Any ideas?

    Hi,
    This is how I did it. Sorry about the formatting, it was OK when I pasted the code fragment in.
    My class contains this in the variable definitions.
    private AWTEventListener keyListener = new DoKey ();
    private class DoKey implements AWTEventListener {
    public void eventDispatched (AWTEvent e) {
    //System.err.println("eventDispatched " + e.toString());
    //System.err.println("eventDispatched source " + e.getSource().toString());
    if ((e instanceof KeyEvent) && (e.getSource() instanceof Component)) {
    * The event was a key pressed event and it was sourced from a Component.
    KeyEvent evt = (KeyEvent) e;
    if (evt.getID() == evt.KEY_PRESSED) {
    if (evt.getKeyCode() == evt.VK_TAB) {
    if (evt.isShiftDown()) {
    ((Component)e.getSource()).transferFocusBackward();
    else {
    ((Component)e.getSource()).transferFocus();
    The listener is enabled when on initialisation
    Toolkit.getDefaultToolkit().addAWTEventListener (keyListener, AWTEvent.KEY_EVENT_MASK);
    Regards, Tony C

  • Need Help making a navigation menu for a website

    Alright so I've been having some problems getting this to work correctly. I am making a navigation menu for a website and I'm trying to get when I hover over the main header a drop down appears animated of course below it. I also want when you highlight a specific text line for it to highlight blue along with a rectangle behind it to change to a lighter shade of red.
    Some of the problems  I have been running into is play and stop commands on mouseover and them not stopping when they should and getting the text to change color.
    Thanks for the help.
    Here are some screen grabs of what I am doing
    http://imgur.com/W2bZuF3
    http://imgur.com/W2bZuF3
    http://imgur.com/2GI3y71

    Your page's code is still a bit of a wreck.  Do you ever look at it?
    <html>
    <style type="text/css">#p7MBM_1 {
      width: 951px;
    You need a doctype first - I recommend HTML4.01 Transitional.  Open this (and other pages) in DW and use FILE | Convert > HTML 4.01 Transitional, then save.  But wait until you do the other changes recommended below before doing this.
    Add a <head> tag below the <html> tag.
    Add a <title> tag below the <head> tag.
    Add this below the <title> tag - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    Add </head> below this -
    <style type="text/css">
    <!--
    .style10 {font-family: "Goudy Old Style"}
    -->
    </style>
    You may want to change that font-family style to "Goudy Old Style, Geneva, Times, 'Times New Roman', serif", since Goudy is not web safe.
    Move <body> below that </head> you just added.
    That will clean your code up a bit.  Let's look at the page again when you have done these.

  • Why do I get "not connected to Internet " when I try to move within a website?

    I am using Verizon hotspot to connect my laptop with internet. Never had problems until IOS 8 came out. My laptop is XP but I don't want a new computer yet! Since I downloaded 8 on my phone my laptop does not work properly! I can get on various websites, but when I try to move within the website I receive on a large screen "no internet connection" but I am still connected to the internet. When I use my computer on a free wifi service I don't have this problem. What is going on? Help Me Please!!!

    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences#advanced'''<Enter> in the address bar.
    Under '''Advanced,''' Select '''General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?
    Then restart.
    Some added toolbar and anti-virus add-ons are known to cause
    Firefox issues. '''Disable All of them.'''

  • Problems with MOBILE websites

    The regular websites are fine, but I keep having problems on every MOBILE website I try. I'm very good with Muse and use it everyday.
    The problem is I am redirecting from a masked domain name. You can see I host my websites using "sub-domains" within my website server from GoDaddy.
    The MOBILE websites have a LOT of extra space on the right side and also on the bottom and it shouldn't be zooming in & out either.
    How can I fix this problem???
    1.
    http://www.lakecountyroadside.com/
    The direct REGULAR domain name is: http://expresswebstudio.com/lakecountyroadsidetowing/index.html
    Masked as: www.LakeCountyRoadside.com
    The direct MOBILE domain name is: http://expresswebstudio.com/lakecountyroadsidetowing/phone/index.html
    If I enter this long domain name, the MOBILE website works right on the phone.
    2.
    http://www.greentouchlandscapes.com/
    The direct REGULAR domain name is: http://expresswebstudio.com/greentouchlandscapes/index.html
    Masked as: www.GreenTouchLandscapes.com
    The direct MOBILE domain name is: http://expresswebstudio.com/greentouchlandscapes/phone/index.html
    If I enter this long domain name, the MOBILE website works right on the phone.
    Also, on this MOBILE website is none of the slideshows are able to "swipe" even though I have it enabled.
    I even tried editing the "redirect code" in the <head> of the home page and that didn't work.

    How to determine which emulation mode to be used and when?
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • Hello! I am writing to inform you that about that you have a problem displaying your website in the browser.

    Hello! I am writing to inform you that about that you have a problem displaying your website in the browser.
    In Yandex browser. I decided to tell you, because the site is not displayed correctly. As in the screenshot.

    apart from the fact there's no way I could have answered your question confidently, I was also not able to supply my non-answer within your very tight time constraints.
    what happened? how'd you get on?

  • In Safari 8, I have problems moving my bookmark folders without it going into another folder. I cannot organize them in any manner?

    In Safari 8, I have problems moving my bookmark folders without it going into another folder. I cannot organize them in any manner?

    Keeping the folder you are moving to the far left will do the trick.

  • Updated to firefox 4.0. since then my computer is very slow accessing the internet, websites and getting information from within a website.

    Over a week ago I updated my computer to Firefox 4.0. Since then my computer is very slow accessing the internet, websites and getting information from within a website. Also, a tool bar has shown up for YAHOO which I did not request. The old detailed tool bar for Firefox has disappeared. All that now shows for Firefox is the area to enter website urls and an area to enter topic for a Google Search.
    Many times I have to exit Firefox and re-enter it later to access the internet.
    Please advice what I need to do to get back to the speed I had with the older version of Firefox.
    Thank You,
    Dennis

    Over a week ago I updated my computer to Firefox 4.0. Since then my computer is very slow accessing the internet, websites and getting information from within a website. Also, a tool bar has shown up for YAHOO which I did not request. The old detailed tool bar for Firefox has disappeared. All that now shows for Firefox is the area to enter website urls and an area to enter topic for a Google Search.
    Many times I have to exit Firefox and re-enter it later to access the internet.
    Please advice what I need to do to get back to the speed I had with the older version of Firefox.
    Thank You,
    Dennis

  • Email or contact box is no longer opening when I click on a link within any website

    whenever I click on any link withing any website that should and always had either opened an email, contact us section withing that website, or my default email, nothing happens. example, going to a website that has a link for contact us, I click on the obvious link and nothing happens. This is not just happening within one website, but every site that I go to. Absolutely nothing happens when I click on links that are obvious links that should direct you to either another area or open an email within every website I go to. This started happening about 6 weeks ago, now in the last week, my firefox keeps crashing for no reason. I use a mac OS X 10.4.11.. I have made no changes to my system, have not downloaded any new programs, and everything else is working fine with my mac.

    Further to jscher2000's suggestion yesterday: I think I misunderstood the suggestion, which I didn't find very clear. I've now discovered that if I send a Firefox open window (with one or more open tabs) to hide in the dock first, then clicking on a link twice (once to bring the mail program to the front and again to open the link), this will cause the hidden tab/s to come out of hiding AND a new tab for the link will open. Cumbersome, and I still maintain there is a bug in version 32, but this workaround is at least quicker than copying and pasting the link.
    Thanks to cor-el and jscher2000 for your responses.

  • Since updating to Firefox 4.0.1 I have a problem with the website shortcuts I have on on desktop.

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [/questions/821825]</blockquote><br>
    Since updating to Firefox 4.0.1 I have a problem with the website shortcuts I have on on desktop. I have a few of these shortcut to website I use a lot. When I click on the short I get the message "windows cannot find [then the web address] make sure you typed the name correctly, then try again. To search for a file, click the Start button, and then click Search." I tried deleting the shortcut and setting it up again but still get the message.

    Try to redo the default browser and make another browser like IE the default browser and then let Firefox do it again.
    See:
    * http://kb.mozillazine.org/Default_browser
    * [[Setting Firefox as the default browser does not work]]

  • When I click on a link within a website to open a document (word, excel etc.), Firefox doesn't open it. Even when I tell it to open in a new window, it just opens a blank tab labeled "untitled."

    When I try to click on a link to a document within a website, that document doesn't open like it should. For instance, if I go to the census website and click on a link to open an excel spreadsheet, Firefox doesn't do it. It usually does nothing; if I tell it to open in a new window or tab, it just opens a tab labeled "untitled" that ends up being a blank page.
    == This happened ==
    Every time Firefox opened
    == 2 months ago?

    Go to Tools->Options->Apps
    Here you should see two columns: Content Type on the left, Actions on the right.
    Find and select excel spreadsheet or any other content type in the left column. There should be a corresponding action in the right column. What is it? You can use the drop-down list to select the option you want:
    Always Ask - Firefox will ask each time: What do you want to do with this file?
    Save file - Firefox will save this file to your computer
    Use - Firefox will give this file to the program to open it
    In case of saving, Firefox will either prompt you every time where you want the file to be saved, or save it to the default location. It depends on the preference in
    Tools->Options->General->Download

  • Every single website, or link within a website page is being added to my location bar/address bar drop down menu. How can I stop this? This just started happening.

    Every single website url address, or url address within a website page is being added to my location bar/address bar drop down menu.
    I don't want everything added or saved in the location bar. Only urls that I used a lot used to be saved there but now every single url (and url within a url)I visit is being added to it.
    How can I stop this? This just started happening.
    I'm sure it's a simple browser setting but I've checked and nothing gives an option to control this.
    Firefox 3.0.17
    Windows XP
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.17) Gecko/2009122116 Firefox/3.0.17

    A possibility is to open the links via the right-click context menu or a middle-click in a new tab to make sure that Firefox sees them as regular links.

  • Facing Black catridge problem within 2 months of purchase HP laserjet p1108 by printing 300 pages.

    Hullo sir,
                    I'm Facing Black catridge problem within 2 months of purchase HP laserjet p1108 by printing 300 pages.The printer window shows you have to print pages < 50.what cani do?

    Hi @thangaraj,
    I see by your post that you have only printed 300 pages and it is now it is showing you have less the 50 pages left.
    I would like to help you resolve this issue.
    Is this the original toner that shipped with the printer?
    You should get approximately 1500 pages according to the specifications for what ships in the box.
    The page count is based on page yield. Depending on what you were printing.
    Still I believe you should have gotten more then 350 pages, unless you were printing full page pictures in black and white.
    Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region. http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    Have a wonderful day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

Maybe you are looking for