Spry good in DW but same error all browsers

When I set up this index.html page following a tutorial, it worked great in DW.  I have 4 pages, all menus performed perfectly in live view, also in browser icon view.  I also put all pages through the browser compatibility check, and no errors came back.  But when I opened the site www.38bucks.com in any of the browsers, the same error happened.
The menu names stacked vertically in a small print to the right, and 4 small dots appeared on the far left.  The menu actually functioned fine, opening each page as required.  The only change I made to css was width of names to 5em and the bg color to black and to have it float right in the div.below is code, thanks for any help.
</style>
<link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
<script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<div id="apDiv1">
  <h2>38Bucks</h2>
</div>
<div id="apDiv3">
  <ul id="MenuBar1" class="MenuBarHorizontal">
    <li><a href="index.html">Home</a>    </li>
    <li><a href="about.html">About</a></li>
    <li><a href="contact.html">Contact</a>    </li>
    <li><a href="cart.html"> Cart</a></li>
  </ul>
  <p> </p>
</div>
<div id="apDiv2">
  <p>Under Construction at this time</p>
</div>
<img src="images/bkgdHome.jpg" width="1200" height="900" alt="Bkgd temp 38Bucks" />
<script type="text/javascript">
var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
</script>

Did you upload the Spry js and css files?  The browser can't find them at your specified locations.
<link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
<script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>

Similar Messages

  • HT204400 no matter what i try,  my apple tv says it cant connect to the network and it gives me error -3906.  i have tried restart and reset, wifi, ethernet same error. all other devices work fine.

    My apple TV has been working fine. Now it gives me error -3906 and says it cant connect to the network. it wont accept the password for my wifi.  I have tried to restart and restore both the apple tv and my modem.  still the same issue and same error message.  any ideas?

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • One small error but it is the same error all the way down through the if's

    This program is so close to finally running after I have spent well over 8 hours trying to figure out the code now I am getting an aggravating error saying " ; " expected all the way down throughout my if statements. Can anyone please tell me what to do to get this program to run? I am so close.
    Here is my code:
    import javax.swing.JOptionPane;
    public class CustomerStatus {
    public static void main(String[] args) {
    int option = JOptionPane.YES_OPTION;
    int hiatustime;
    int purchasenumber=1;
    int loyaltime=0;
    String status="";
    System.out.println("Purchase Number\t Time before next purchase(months)\tTotal Customer Loyalty(months)\tStatus History");
    System.out.println(1 +"\t\t " + 0 + "\t\t\t\t\t" + 0 + "\t\t\t\t" + "STANDARD");
    while(option==JOptionPane.YES_OPTION){
    hiatustime=Integer.parseInt(JOptionPane.showInputDialog(null, "Enter in the time between purchases(in months): "));
    purchasenumber++;
    loyaltime+=hiatustime;
    If((loyaltime >= 10) && (hiatustime <=6))
    status="PLATINUM";
    If((loyaltime >= 10) && (hiatustime > 6) && (hiatustime <= 12))
    status="GOLD";
    If((loyaltime >= 10) && (hiatustime > 12) && (hiatustime <= 18))
    status="SILVER";
    If((loyaltime >= 10) && (hiatustime > 18) && (hiatustime <= 24))
    status="BRONZE";
    If((loyaltime >= 10) && (hiatustime > 24))
    status="STANDARD";
    If((loyaltime < 10) && (loyaltime >= 5) && (hiatustime <= 6))
    status="GOLD";
    If((loyaltime < 10) && (loyaltime >= 5) && (hiatustime <= 12) && (hiatustime > 6))
    status"SILVER";
    If((loyaltime < 10) && (loyaltime >= 5) && (hiatustime <= 18) && (hiatustime > 12))
    status="BRONZE";
    If((loyaltime < 10) && (loyaltime >= 5) && (hiatustime > 18))
    status="STANDARD";
    If((loyaltime < 5) && (loyaltime >= 1) && (hiatustime <= 6))
    status="SILVER";
    If((loyaltime < 5) && (loyaltime >= 1) && (hiatustime <= 12) && (hiatustime > 6))
    status="BRONZE";
    If((loyaltime < 5) && (loyaltime >= 1) && (hiatustime > 12))
    status="STANDARD";
    If((loyaltime < 1) && (hiatustime >= 0))
    status="STANDARD";
    System.out.println(purchasenumber +"\t\t" + hiatustime + "\t\t\t\t\t" + loyaltime + "\t\t\t\t" + status);
    option = JOptionPane.showConfirmDialog(null, "Would you like to enter any more time between purchases(in months)? ");
    }

    hey duke, you're back :)
    can you please enclose the whole code in a block. it's hard on the eyes                                                                                                                                                                                                               

  • Hi, i got same error all the time...  kernel[0]: SMC::smcReadKeyAction ERROR F1Mn kSMCBadArgumentError(0x89) fKeyHashTable=0x0xffffff801c97d000

    i read allready some smcFan error from another dude's, i don't use it
    anyone know the code: "fKeyHashTable=0x0xffffff801c97d000" for what is ?
    thx, regards b4rb0s

    Another update for iStat Menus today but still the same erors are occuring on my MacPro 3,1 with Lion 10.7.5.
    I have been having stability issues on this machine for several weeks and I am unable to determine what the cause is. I have done everything (except what works ) including a reinstall of the OS and upgrade, repairs of this and that. I do not specifically think my instability is related to the SMC::smcReadKeyAction errors that happen each time iStatMenus loads at startup...... but I guess it is possible there is an intersection.....
    Have you uninstalled iStatServer which you might have installed to remotely monitor your machine parameters with your iPhone, iPad, etc? While I loved that feature of iStat, I uninstalled it some weeks back as I was closing up security attack surface on my servers and workstations?
    Here's the tail of my iStat related logs from today after upgrade....
    10/24/12 7:30:01.000 AM kernel: SMC::smcReadKeyAction ERROR PG0R kSMCBadArgumentError(0x89) fKeyHashTable=0x0xffffff802a020000
    10/24/12 7:30:01.000 AM kernel: SMC::smcReadKeyAction ERROR PH1Z kSMCBadArgumentError(0x89) fKeyHashTable=0x0xffffff802a020000
    10/24/12 7:30:02.009 AM SystemUIServer: iStatMenus Daemon version 3.27 (103)
    10/24/12 7:30:02.012 AM SystemUIServer: iStatMenus Daemon version 3.27 (103)
    10/24/12 7:30:32.423 AM SystemUIServer: -[TCMNATPMPPortMapper refreshExternalIPInThread] NAT-PMP: IP refresh did fail: -7

  • ITUNES WILL NOT LOAD, I get an error message which tells me to re-install iTunes.tried on several occasions with same error message.

    I am operating windows XP and iTunes will not open. An error message is telling me that files are missing and to reload iTunes. I tried to but error reoccurs. Tried removing the iTunes and erasing all iTunes files and re-installing but same error message occurs? Has anybody had the same problem?

    Hello Roadster44,
    Thank you for the details of the issue you are experiencing with reinstalling iTunes.  I recommend following the steps below:
    1. Remove iTunes and related components from the Control Panel
    Use the Control Panel to uninstall iTunes and related software components in the following order. Then, restart your computer:
    iTunes
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Important: Uninstalling these components in a different order, or only uninstalling some of these components, may have unintended affects.If you encounter an error while uninstalling, try repairing the affected component:
    2. Verify iTunes and related components are completely uninstalled In most cases, removing iTunes and its related components from the Control Panel will remove all supporting files belonging to those programs. To fully resolve these issues, manually remove any remaining iTunes-related folders listed below.On 32-bit and 64-bit systems:On 64-bit systems:
    3. Reboot your computer.
    4. Download the iTunes installer. When prompted to select what you want to do, choose to save it to your computer.
    5. Install iTunes.
    Right click on iTunesSetup or iTunes64Setup.
    Windows Vista, Windows 7, and Windows 8: Select the 'Run as administrator' option.
    Windows XP: Select the Open option.
    Finish installing iTunes.
    It is important to uninstall iTunes and the related components in the order listed in the first step.
    You can find the full article here:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • How do you get your site to appear the same in all web browsers?

    There are some things that show up differently in Safari than they do in IE and Firefox, how do I get everything to jive the same? I think it is in the code which I am not an expert on.  My website was a template that I purchased online and most of the code was already built in.  I have some of my links in Safari showing white when you rollover them but when I look in IE and Firefox they're not there.  Can anyone offer any suggestions on how to fix this?
    Thanks

    Actually what you are learning here is to create a stylesheet for all of your web pages. Including all of your styles inline in the page's code is very cumbersome.
    Each of your pages needs code that refers to your stylesheet:
    <style type="text/css" media="all">
    @import url("../../css/content.css");
    </style>
    <style type="text/css" media="print">
    @import url("../../css/content_print.css");
    </style>
    This assumes that your stylesheets (in my case, one for print, one for browsers) are located in a folder called /css which is a habit I have for neatness.
    One thing that Dreamweaver does very well is keeps track of your styles and helps you edit styles to suit. I'm using CS3 which doesn't really allow you to look at the result of rollovers from within the application, but I keep Firefox handy for previewing. Problem is, once you create a style for a "visited" link, you can no longer see the result of the style for unvisited links in your browser unless you clear your browsers cache. Dreamweaver CS3 always shows links in their unvisited state.
    There is other code I use to make Microsoft's non-compliant browsers do the right thing, though rollovers, visited, and such all tend to work the same in all browsers, save the most antediluvian.
    <!--[if IE 5]>
    <style type="text/css">
    /* IE 5 does not use the standard box model, so the column widths are overidden to render the page correctly. */
    #outerWrapper #contentWrapper #leftColumn1 {
      width: 185px;
    </style>
    <![endif]-->
    <!--[if IE]>
    <style type="text/css">
    /* The proprietary zoom property gives IE the hasLayout property which addresses several bugs. */
    #outerWrapper #contentWrapper, #outerWrapper #contentWrapper #content {
      zoom: 1;
    </style>
    <![endif]-->
    The above code handles issues with Microsoft's intransigence pretty well, and my sites tend to look really uniform. But in the case of menus, I often have to write a completely different stylesheet to wrestle with Internet Exploder:
    This is stylesheet reference for my menus:
    <style type="text/css" media="all">
    @import url("../css/menu/menu.css");
    </style>
    <!--[if lte IE 6]>
    <style type="text/css" media="all">
    @import url("../css/menu/menu_ie.css");
    </style>
    <![endif]-->
    Then I craft the changes for Internet Exploiter 6 in a separate stylesheet.
    This should give you an idea of how powerful an external stylesheet can be. You can use "if" statements to handle the differences between the Microsoft non-compliant browsers and the more modern and compliant browsers, like Safari, Firefox and Opera.
    You can see the result in any browser at http://www.readingsbykaren.com

  • File Attachments crash ALL browsers after 10.9.3 update.

    This may be related to the 'drag & drop' issue, but is different.
    If I attempt to attach a file to Gmail, Yahoo, Mail.com via drag & drop OR clicking the 'Attach' button, whatever browser I am using will freeze. I must force quit the browser AND Finder to get things back in order. After forcing quit on the browser and Finder the 'select file' Finder window partially remain on the screen for en extended period. I have recreated this in Safari, Chrome, and Firefox. I have tried multiple websites.
    Things I have tried:
    - verify & repair disk permissions
    - verify & repair disk
    - reboot
    - Safari, Chrome, Firefox
    - Gmail, Yahoo Mail, Mail.com

    My housemate has exactly the same problem.  The problem only occurs on her user account (even in safe mode).  It doesn't occur on any other newly created accounts.  I've tried repairing all disk permissions, too.  I also tried uninstalling/reinstalling Flash in case it was related to that.  Finally, I've tried rebuilding the user account (this method).  Nothing worked.
    Interestingly, for her mac (running Mavericks), dragging and dropping files into the webpage on outlook.com works fine.  It's only when the browse finder window pops up that the crash occurs.  This is the same across all browsers.
    There seems to be extremely little out there on the net about this, so I'm guessing that it's very rare - which will unfortunatley make it hard to diagnose and fix.  So frustrating!

  • I cant get into itunes producer keep getting an error my username and password is incorrect. i have made a new one all good still same error any ideas?

    I cant get into itunes producer keep getting an error my username and password is incorrect. i have made a new one all good still same error any ideas?

    I'm having a very similar problem.
    I'm based in the U.K. and am trying to publish an iBook through the iTunes bookstore. I have made my book in iBooks author 2.0. My iTunes is up to date.
    When I try and publish the iBook I have passed and ticked the Pre Publish Check; and the Create Account, but when I try and download iTunes Producer through iTunes Connect I'm told "Your Apple ID does not have permission to access iTunes Content."
    When I try and re-set my iTunes Store account I'm told "The iTunes Store Account has already applied to distribute content on the iBookstore." Of course it has I just did that.
    If I try and sign in to iTunes Connect through the Publishing pane I'm told "Your ID or Password was entered incorrectly." Even though I've just used it to sign into iTunes (and here), so my password and Apple ID work fine elsewhere.
    Is my access to the iTunes Connect being delayed while my submission is processed, i.e. the processing of my tax and account details? Or am I stuck in a loop?
    If this is still processing (I started this 20 hours ago) I assume that I have to submit the book itself when I can download iTunes Producer at a later date, as I haven't submitted the book yet?
    I emailed the problem to iTunes Store and was refered to [email protected], only for them to say they don't read or reply to emails sent to that address??????
    I'm not sure which part of the process I've reached - if any. I feel I'm in limbo. I have an iBook ready to go - but where is Apple?
    Any help would be most welcome.
    Andy

  • I tried to sync my Macbook Pro photos in iPhoto with my iPod Touch.  I have done this numerous times, but today I got an error message saying the required file cannot be found.  At the same time all of my photos on my iPod vanished.  Can anyone help me?

    I tried to sync my Macbook Pro photos in iPhoto with my iPod Touch.  I have done this numerous times, but today I got an error message saying the required file cannot be found.  At the same time all of my photos on my iPod vanished.  Can anyone help me?

    Try deleting the photo cache from your computer and then re-try the photo sync - the location of the cache, and how to delete it, is on this page http://support.apple.com/kb/TS1314

  • Firefox crashes and when attempting to launch after the crash it won't and throw and error msg that js.3250 can't be found- but same file is in Mozilla directory. I must then download new 3.6.8 and lose all tabs.

    # Question
    Firefox crashes and when attempting to launch after the crash it won't launch; throwing an error msg that " js.3250 can't be found" - but same file is in Mozilla directory.
    I must then download new 3.6.8 and lose all tabs and history.

    I have a similar problem. Recently my FF8 has been crashing a lot. It regularly locks up an entire core of my PC and often just shuts down. It has just done it a moment ago and when it started back up it did the whole "this is embarrassing" thing and asked me if I wanted to reload my tabs. I deselected the one that I was trying to view as I suspected that it may have been the cause (unlikely; it was node4.co.uk) but anyway, let's skip it just in case. Click on the button to restore and up pops my homepage only. So all of my other tabs, which I was using for work incidentally, are gone.
    This is not the first time this has happened on FF8. It happened a lot recently on FF6 I think it was (so hard to keep track now, Mozilla) and I switched to Chrome as a result, but it turns out that it crashes even more than FF6 did. FF7 was a vast improvement but FF8 is so unstable/unpredictable for me at the moment that I think I'd rather use IE9 than this. It's driving me mental, clearly! I wish I could kill the process manually and have it retry restoring tabs. Hey, there's an idea Mozilla; give us a menu item that allows us to restore the session to how it started to try again or at the very least get a list of the pages we were looking at. They don't show up in Recently Closed Windows and the Restore Previous Session is greyed out too. Gah! Help!

  • Update 12.1 installed with Error 7 (Windows error 126).  Reinstalled.  Same error.  Uninstalled all Apple products.  Reinstalled iTunes.  Same error.  Updated to 12.1.1. Same error message.  Uninstalled everything.  Reinstalled 12.1.1.  Same error.

    Update 12.1 installed with Error 7 (Windows error 126).  Reinstalled.  Same error message.  Uninstalled all Apple products.  Reinstalled iTunes 12.1.  Same error message.  Updated to 12.1.1. Same error message.  Uninstalled everything.  Reinstalled 12.1.1.  Same error message.  iTunes runs and plays my music, but the error message remains.  It doesn't hinder my music playing, but it is annoying.  And, this is all done on my work computer.  I have not unpdated iTunes on my home laptop, cause I don't want to have to deal with this error message.

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • I cannot back up my i pad to my iTunes, but the error message is not always the same.

    I cannot back up my i pad to my iTunes, but the error message is not always the same. I get everything from could not back up "because the iPad disconnected" to could not back up "because the iPad was not set up."
    Here are things I tried that did not help:
    1) I turned my iPad off then turned it back on.
    2) I backed up my iPod touch to see what happened, and it went fine.
    3) I tried a different cord to connect the computer to the iPad.
    4) I updated my iPad
    5) I updated my iTunes
    Any other suggestions? Thanks!!

    There are multiple places where these photos could be stored:
    - a recent iCloud back up
    - on your PC/Mac if you imported them
    - Photostream if you used it
    Unfortunately if the photos are not stored in any of these locations then they have been lost for good.
    All the best

  • I was updating i-tunes on my windows vista but it stopped working after that.Since then i have un-installed and re-installed it a dozen times but it shows the same error (Apple error:2

    Hi
    Recently I purchased Iphone 4-s and tried to connect it to my existing i-tunes but it didnt recognise the device. So I tried updating the I-tunes to see if it made a difference but it was no good.
    Hence i followed the trouble shooting and uninstalled and re-installed i-tunes but it wont get installed properly now. Since then I have un-installed and re-installed the complete set of i-tune softwares a dozen times but it still gives me the same error- Apple Error: 2 and Windows Error :2 and report of being unable to install the Apple Application Support software. I have spent 2 1/2 hours talking to the Apple Technical Support Team regarding this but it still hasnt been resolved.( In addition, i have ensured the firewalls are disabled and also opened new user account (admin priviledges) to try and download it)
    Now not only can i use my iphone but also my ipod is out of action in regards to music and downloads.
    I would really really really appreciate anyone helping me in this matter as i am in dire straits now.
    Thank you so much in advance
    Regards

    I also have this problem. I cannot open links from a discussion board I frequent nor can I open links from my email. Also after opening my email, I cannot go to any other sites except my home page. I can then go no where else.
    When I close Firefox and try to reopen it, it does nothing! I have to bring up the Task Manager and end the Firefox process before I can get back in.
    To the best of my knowledge, this problem started with the new update to Ver. 3.6.9. I am running Windows XP Media Center 2005

  • I Beta tested 4.0 RC1 and now can not upgrade to 4.0. Error message is need to reboot to complete prior instalation. Have removed all previous versions of Firefox, rebooted and still same error message.

    I Beta tested up to and including 4.0 RC1 without major problems. However I can not now upgrade to 4.0. Same error message time and again, "need to reboot to complete prior upgrade instalation". I rebooted several times, then tried first removing all previous versions of Firefox using both MS Add/Remove and then iolo System Mechanic, then again downloading 4.0. Even after rebooting same error message. I can not therefore install/use Firefox.

    Do a clean (re-)install:
    * Download a fresh Firefox copy and save the file to the desktop.
    * Firefox 4.0: http://www.mozilla.com/firefox/all.html
    * Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    * Don't remove personal data if you uninstall the current version.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere (not in the Firefox program folder) and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.

  • I keep getting download error and it does not want to download.  I tried deleting anything that might have creative suite links and reloading but I keep getting the same error message.

    I keep getting download error and it does not want to download.  I tried deleting anything that might have creative suite links and reloading but I keep getting the same error message.

    Well... what IS the error message?
    Please read https://forums.adobe.com/thread/1499014
    -try some steps such as changing browsers and turning off your firewall
    -also flush your browser cache so you are starting with a fresh browser
    http://myleniumerrors.com/installation-and-licensing-problems/creative-cloud-error-codes-w ip/
    http://helpx.adobe.com/creative-cloud/kb/failed-install-creative-cloud-desktop.html
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

Maybe you are looking for

  • Issue in treeview control along with page viewer web part showing the sub sites from MMS

    hi, Am having a treeview control populates  with values from  MMS - Managed Metadata Service. [ Products ] ----->ms office              ----->word             ----->excel              ---->powerpoint -------->Collaboration                  ---->   sh

  • Not able to connect with xm console

    Oracle VM server release 3.1.1 Hypervisor running in 64 bit mode with Hardware Virtualization support. Hello All- I am using VM 3.1.1 and while trying to connect xm console #, getting below. I can connect using OVM console/VNC option. But xm console

  • Document number ranges changes

    Dear friends, While creating the document number ranges for current year, user wrongly changed the previous year number ranges, now it is giving new number ranges for new documents which are posted in previous year, how to reset the previous number r

  • How to protect my mac screen

    How to protect my apple macbook pro screen??

  • How to uninstall office for mac trial

    Hoe do you uninstall office for mac 30-day trial after it expires?