Welcome to TalkGraphics.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Jun 2007
    Posts
    6

    Default Nav/Menu Bar problems

    Hi

    My Website is www.waterfuelcell.org, I think I have screwed something up?......It was working fine online until I shifted a few files around and updated a few pages.

    as you can probably see the Nav/Menu Bar has Disappeared?......

    see this link to view the Nav/Menu Bar at the top of the page as it was seen before on the web before I screwed it up

    http://www.waterfuelcell.org/sitepic.gif

    It appears to be working alright in frontpage but when I upload it, it doesnt want to apear.

    any help will be greatly appreciated. I will not let it go unrewarded as I need this fixed ASAP.

    Murray
    Last edited by Muzza; 18 June 2007 at 07:19 AM.

  2. #2
    Join Date
    Jul 2006
    Location
    Tampa Bay
    Posts
    21

    Default Re: Nav/Menu Bar problems

    Murray,

    It looks like your code is trying to call your nav bar from your local machine and not the server.

    This is what I found in your code:

    <div id="hnavigation">
    <!--webbot CLIENTSIDE bot="Ws4FpEx" MODULEID="'The Water Fuel Cell (Project)\intro_hnavbar_off.xws'" PREVIEW="&lt;img src='../../../../../DOCUME~1/MUZZAN~1/LOCALS~1/Temp/WS3/intro_hnavbar.gif?000A318E' editor='Webstyle4' border='0'&gt;" startspan --><script src="xaramenu.js"></script><script Webstyle4 src="../../../../../DOCUME~1/MUZZAN~1/LOCALS~1/Temp/WS3/intro_hnavbar.js"></script><noscript><img src="../../../../../DOCUME~1/MUZZAN~1/LOCALS~1/Temp/WS3/intro_hnavbar.gif?000A318E" editor="Webstyle4"></noscript><!--webbot bot="Ws4FpEx" endspan -->
    </div>


    This can happen in Webstyle if you open a page in it and when you get the message saying - you have used this theme before, do you want to copy in logo, colors, and navbars. If you don't select all that it doesn't pull in the navbar, colors and logo that you already created.

    Also, you are missing the logo on the left side. I get a red x.

  3. #3
    Join Date
    Jun 2007
    Posts
    6

    Default Re: Nav/Menu Bar problems

    can you send me a screen shot of what you see.....for some reason it differs my end.

    would you be prepared to help guide me through exactly how to fix this?

    can I contact you privately through your website?

    happy to pay you what I can to get it soughted ASAP

    cheers

    Murray

  4. #4
    Join Date
    Jul 2006
    Location
    Tampa Bay
    Posts
    21

    Default Re: Nav/Menu Bar problems

    Murray,

    I clicked on one of the links and was sent to concept.html page and the navbars are there. This is what I found:

    <div id="hnavigation">
    <!--webbot CLIENTSIDE bot="Ws4FpEx" MODULEID="'The Water Fuel Cell (Project)\intro_hnavbar_off.xws'" PREVIEW="&lt;img src='intro_files/intro_hnavbar.gif?003F7E07' editor='Webstyle4' border='0'&gt;" startspan --><script src="xaramenu.js"></script><script Webstyle4 src="intro_files/intro_hnavbar.js"></script><noscript><img src="intro_files/intro_hnavbar.gif?003F7E07" editor="Webstyle4"></noscript><!--webbot bot="Ws4FpEx" endspan -->
    </div>


    Compare that to your index.html page:

    <div id="hnavigation">
    <!--webbot CLIENTSIDE bot="Ws4FpEx" MODULEID="'The Water Fuel Cell (Project)\intro_hnavbar_off.xws'" PREVIEW="&lt;img src='../../../../../DOCUME~1/MUZZAN~1/LOCALS~1/Temp/WS3/intro_hnavbar.gif?000A318E' editor='Webstyle4' border='0'&gt;" startspan --><script src="xaramenu.js"></script><script Webstyle4 src="../../../../../DOCUME~1/MUZZAN~1/LOCALS~1/Temp/WS3/intro_hnavbar.js"></script><noscript><img src="../../../../../DOCUME~1/MUZZAN~1/LOCALS~1/Temp/WS3/intro_hnavbar.gif?000A318E" editor="Webstyle4"></noscript><!--webbot bot="Ws4FpEx" endspan -->
    </div>


    You can see here that the image source is different.

    You can try the following:

    Open your index.html in front page, or notepad or textpad, or whatever you use to edit your web pages with.

    Find the <div id="hnavigation"> section (it appears after all the css stuff at the top).

    Delete the bad code and copy over that entire section with the good code from one of your other pages.

    e.g.

    BAD CODE
    <div id="hnavigation">
    <!--webbot CLIENTSIDE bot="Ws4FpEx" MODULEID="'The Water Fuel Cell (Project)\intro_hnavbar_off.xws'" PREVIEW="&lt;img src='../../../../../DOCUME~1/MUZZAN~1/LOCALS~1/Temp/WS3/intro_hnavbar.gif?000A318E' editor='Webstyle4' border='0'&gt;" startspan --><script src="xaramenu.js"></script><script Webstyle4 src="../../../../../DOCUME~1/MUZZAN~1/LOCALS~1/Temp/WS3/intro_hnavbar.js"></script><noscript><img src="../../../../../DOCUME~1/MUZZAN~1/LOCALS~1/Temp/WS3/intro_hnavbar.gif?000A318E" editor="Webstyle4"></noscript><!--webbot bot="Ws4FpEx" endspan -->
    </div>

    GOOD CODE

    <div id="hnavigation">
    <!--webbot CLIENTSIDE bot="Ws4FpEx" MODULEID="'The Water Fuel Cell (Project)\intro_hnavbar_off.xws'" PREVIEW="&lt;img src='intro_files/intro_hnavbar.gif?003F7E07' editor='Webstyle4' border='0'&gt;" startspan --><script src="xaramenu.js"></script><script Webstyle4 src="intro_files/intro_hnavbar.js"></script><noscript><img src="intro_files/intro_hnavbar.gif?003F7E07" editor="Webstyle4"></noscript><!--webbot bot="Ws4FpEx" endspan -->
    </div>


    Like I said before you if you opened that index.html page in Webstyle and didn't import the nav bar etc it's going to change things up on you. I have been working with Webstyle for 3.5 years and have made just about every mistake possible, so I know.

  5. #5
    Join Date
    Jun 2007
    Posts
    6

    Default Re: Nav/Menu Bar problems

    I solved it .......what I did was copy the Nav/Bar from another page in my Frontpage editor..........funny that because that's how I first stuffed it up I think?

    I tried your code way and it did'nt work unfortuantely.

    I appreciate the help you gave and will be in touch.

    cheers

    Murray

 

 

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
  •