Having trouble with garmin website registering recent product

I recently purchased a garmin product and while visiting the website and trying to register my product, it said it wasn't compatible with Firefox 5.0. I would like to know how to get the updated version of Firefox to register my Garmin product.

Basically, the Garmin software that you installed on your PC needs an updated version of Garmin's Firefox plugin. Firefox 5.0 was just released 7 weeks ago, and it is the latest release version of Firefox. And Firefox 6 is due to be releases on 8 / 16.

Similar Messages

  • Still having trouble with Dreamweaver website in Internet Explorer

    I had to make some changes and IE (8 & 9) is giving me new fits. This is the URL "http://www.canonguy.net/KehilaLinktest/"
    The left menu isn't stacked (links are different lengthsit does an over/under???) & the font sizes are different in right/left sidebars. like it is in Safari/Firefox/Chrome and the
    Here are my stylesheets today:
    threeColFixHdr.css
    @charset "utf-8";
    /*.container .blockquote {
        background-color: #FAF0E6;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 0.9em;
        font-weight: normal;
        text-decoration: underline;
        border-left-width: thick;
        border-left-style: double;
        border-left-color: #666;
        margin-left: 25px;
        margin-right: 15px;
    .content blockquote  {
        background-color: #FAF0E6;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1em;
        font-weight: normal;
        text-decoration: none;
        border: thin dashed #333;
        padding: 10px;
        margin-left: 12px;
        margin-right: 10px;
    /* CSS Document */
    body {
        /* [disabled]font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif; */
        background: #42413C;
        margin: 0;
        padding: 0;
        color: #000;
        font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
        /* [disabled]font-size: 1.2em; */
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
        padding: 0;
        margin: 0;
    h1, h2, h3, h4, h5, h6, p {
        margin-top: 0;     /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
        padding-right: 15px;
        padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
        font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
        font-size: .8em;
        font-weight: 300;
        text-align: center;
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
        border: none;
    img {
        border: 2px solid #000;
    .header a:link {
        color: #FFF;
        text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
        font-weight: 900;
    .header a:hover, .header a:active, .header a:focus {
        text-decoration: none;
        color: #FFF;
        font-weight: 400;
    .header a:active , .header a:focus   {
        text-decoration: none;
        color: #FFF;
    .header a:hover {
        text-decoration: blink;
        color: #E8E1D1;
    a:visited {
        color: #6E6C64;
        text-decoration: underline;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
        color: #00F;
        text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
        font-weight: 900;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
        text-decoration: blink;
        color: #929C53;
    /* ~~ This fixed width container surrounds all other divs ~~ */
    .container {
        width: 1000px;
        background: #FFFFFF;
        margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
        font-size: 14pt;
    /* ~~ The header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo. ~~ */
    .header {
        /* [disabled]background: #ADB96E; */
        height: 88px;
        background-color: #929C53;
        color: #FFF;
        border-bottom: 1px solid #000;
    h3  {
        color: #FFF;
    .content {
        padding: 10px 0;
        width: 600px;
        float: left;
        font-size: 1.0em;
        min-height: 600px;
        max-height: 3000px;
        margin-left: 35px;
    /* ~~ These are the columns for the layout. ~~
    1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.
    3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
    4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
    .sidebar1 {
        float: left;
        width: 170px;
        background: #E8E1D1;
        font-size: 9pt;
        height: 650px;
        border-right: 1px solid #000;
        border-bottom: 1px solid #000;
    .sidebar2 {
        float: right;
        width: 170px;
        background: #E8E1D1;
        padding: 10px 0;
        font-size: 9pt;
        height: 650px;
        border-bottom: 1px solid #000;
        border-left: 1px solid #000;
        color: #333;
    .container .sidebar2 .JewishGen {
        font-size: 0.8em;
        margin-top: 50px;
        margin-left: 10px;
    .CenteredHeadings {
        font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
        font-size: 1.1em;
        font-weight: 600;
        text-align: center;
    .sidebar1 a:link {
        color: #030;
        text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
        font-weight: 900;
    .sidebar2 a:link {
        color: #333;
        text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
        font-weight: 900;
        text-align: left;
    .container .sidebar2 .searchBox {
        margin-bottom: 5px;
        border: thin solid #000;
        margin-left: 15px;
        margin-right: 5px;
        background-color: #BEC49F;
        margin-top: 25px;
        width: 140px;
    /* ~~ This grouped selector gives the lists in the .content area space ~~ */
    .content ul, .content ol {
        padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
    /* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
    ul.nav {
        list-style: none; /* this removes the list marker */
        border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
        margin-bottom: 15px; /* this creates the space between the navigation on the content below */
    ul.nav2 {
        list-style: none; /* this removes the list marker */
        border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
        margin-bottom: 15px; /* this creates the space between the navigation on the content below */
    ul.nav li {
        border-bottom: 1px solid #666; /* this creates the button separation */
    ul.nav2 li {
        border-bottom: 1px solid #666; /* this creates the button separation */
    ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
        padding: 5px 5px 5px 15px;
        display: block; /* this gives the anchor block properties so it fills out the whole LI that contains it so that the entire area reacts to a mouse click. */
        width: 145px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
        text-decoration: none;
        background: #BEC49F;
        /* [disabled]background-color: #C6D580; */
    ul.nav2 a, ul.nav2 a:visited {
        padding: 5px 5px 5px 15px;
        display: block; /* this gives the anchor block properties so it fills out the whole LI that contains it so that the entire area reacts to a mouse click. */
        width: 135px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
        text-decoration: none;
        background: #BEC49F;
    ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
        background: #ADB96E;
        color: #FFF;
    ul.nav2 a:hover, ul.nav2 a:active, ul.nav2 a:focus {
        background: #ADB96E;
        color: #FFF;
    .nav {
        height: 250px;
    .nav2 {
        height: 250px;
    /* ~~ The footer styles ~~ */
    .footer {
        background: #CCC49F;
        position: relative;/* this gives IE6 hasLayout to properly clear */
        clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
        height: inherit;
        font-size: .6em;
        border-top: 1px solid #000;
    .footerCopy {
        /* [disabled]padding: 10px; */
        background: #CCC49F;
        position: relative;/* this gives IE6 hasLayout to properly clear */
        clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
        font-size: 1em;
        text-align: left;
    /* ~~ Miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
        float: right;
        margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
        float: left;
        margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the .container) if the .footer is removed or taken out of the .container */
        clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    h1 {
        font-size: 200%;
        color: #000;
    h2 {
        font-size: 170%;
        color: #000;
    h3 {
        font-size: 150%;
        color: #333;
    h4 {
        font-size: 130%;
        color: #333;
        text-align: left;
    h5 {
        font-size: 120%;
        color: #333;
    h6 {
        font-size: .9%;
        color: #333;
    .container  .smallText {
        font-size: 0.75em;
        text-align: center;
    .container .sidebar2 {
        /* [disabled]color: #929C53; */
    .Center_caption {
        text-align: center;
        color: #333;
        font-weight: normal;
        padding: 0px;
        margin-top: 10px;
    .container .content .indentContent {
        text-align: left;
    .container .content h5 {
        margin-left: -250px;
        /* [disabled]padding-left: 25px; */
    .container .content .pageTitle {
        font-weight: 900;
        color: #333;
        margin-left: 50px;
        padding-bottom: 25px;
    .romania {
        font-weight: 900;
        color: #906;
    spryMenuBarVertical.css
    @charset "UTF-8";
    /* SpryMenuBarVertical.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
    ul.MenuBarVertical
        padding: 0;
        list-style-type: none;
        cursor: default;
        width: 140px;
        background-color: #BEC49F;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are same fixed width as parent */
    ul.MenuBarVertical li
        margin: 0;
        padding: 0;
        list-style-type: none;
        position: relative;
        text-align: left;
        cursor: pointer;
        border: 1px solid #fff;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarVertical ul
        margin: -5% 0 0 95%;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: absolute;
        z-index: 1020;
        cursor: default;
        width: 8.2em;
        left: -1000em;
        top: 0;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarVertical ul.MenuBarSubmenuVisible
        left: 0;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarVertical ul li
        width: 8.2em;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Outermost menu container has borders on all sides */
    ul.MenuBarVertical
        border: 1px solid #CCC;
    /* Submenu containers have borders on all sides */
    ul.MenuBarVertical ul
        border: 1px solid #CCC;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarVertical a
        display: block;
        cursor: pointer;
        background-color: #BEC49F;
        padding: 0.5em 0.75em;
        color: #333;
        text-decoration: none;
        font-size: 9pt;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
        background-color: #929C53;
        color: #FFF;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
        background-color: #929C53;
        color: #FFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarVertical iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarVertical li.MenuBarItemIE
            display: inline;
            f\loat: left;
            background: #FFF;
    HeaderDivs.css
    @charset "utf-8";
    /* CSS Document */
    .leftSide{
        float:left;
    .rightSide{
        float:right;
    BigHeader {
        font-family: Georgia, "Times New Roman", Times, serif;
        font-size: 200%;
        font-style: normal;
        font-weight: 900;
        font-variant: normal;
        color: #FFF;
        margin-top: 20px;
        margin-left: 15px;

    In this line:
    <img style="margin-left:27px;margin-top:30px;" src="images/coat-of-arms.gif" width="100" height="138" alt="Roman's Coat of Arms" /><h4 style="padding-top:25px;padding-bottom:8px;text-align:center;font-weight:800;">
    Close the image tag at the end:
    <img... ...height:800;" />
    You need to go through your <ul> and <li> tags very, very carefully.  You have some mismatched elements (missing closing tags) in your huge list.
    Here:
    <p>
         <!-- end .content -->
         <!-- InstanceBeginEditable name="EditRegion4" --><!-- InstanceEndEditable -->
       <p> </p>
    You have missed a closing </p> tag
    These input elements need closing like this
    <input name="allcountry" value="ALLROMANIA" type="hidden" />
    You may have too many closing </div> tags at the end of your page.
    Check your site in the validator: http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.canonguy.net%2FKehilaLinktest %2F
    Fix the problems you can and then revalidate it to see how you are getting on.
    Martin
    The first thing to focus on is your <ul> an <li> tags that will screw your menu

  • I am having trouble with all websites that have the embedded Windows Media Player. If I go to a page with a Webcam that is using Windows Mwdia, the player does not play or even show up. Any ideas?

    With all my other browsers, thia is not an issue including Firefox 3.6. For example, this page http://www.liveduvalstreet.com/ will display fine in every browser except Firefox 4. Because of that issue, I reverrted back to 3.6 until I can find a fix. I have tested this page in Chrome, Maxthon 2 and 3, Internet explorer 8 and Firefox 3.6 with no issues at all. This is just an example site. All sites with the embedded player will not work.

    Thanks a million! Thatr did the trick. I had an older versiuon of the plug in installed as well.

  • Having trouble with different websites wanting different versions of flashplayer

    hulu.com wants one version of flash player and CBS wants another so i downloaded the achive 9 but it is not working on CBS. i do not know what to do i did see a page on adope about switching but cant find i tnow. [email address removed]

    There can be player detection issues on web site especially when we move from say version 10 to version 11.  This has happened before and we try to work closely with these sites to make sure they fix their detection. Would you let me know what version of Flash Player you have installed on what OS and browser you see these problems.  I'll check it out and contact the site if I can reproduce. 

  • Iam having trouble with certain website letting me got to the next page of that website like my ent or usaa it will not let me check my summary. If i click sudmit it will not do any thing just keep me on that same page. what do I do?

    When i click on a button that says sudmit or next it will not go to that next page it just stays on that page.

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • I recently joined Pinterest and am having trouble with it on Firefox.

    I recently joined Pinterest and am having trouble with it on Firefox. I am able to load the website but unable to repin and pin my own items. The site works slowly but fine on IE. Any ideas?

    You mean an external SSD? What kind of connection, that will be the bottleneck. Replacing the internal might be ok for a while till you start to fill it up, then the whole system will slow down.

  • TS3274 my ipad is having trouble with my music... i had recently gotten a new one when i signed into my icloud the music that i had on the original one was not there.... some songs were in fact there but not clickable ( it was there only gray)..anyone kno

    my ipad is having trouble with my music... i had recently gotten a new one when i signed into my icloud the music that i had on the orignal one was not there.... some songs were in fact there but not clickable ( it was there only gray)... i was looking for help on how to get the music on the ipad

    my ipad is having trouble with my music... i had recently gotten a new one when i signed into my icloud the music that i had on the orignal one was not there.... some songs were in fact there but not clickable ( it was there only gray)... i was looking for help on how to get the music on the ipad

  • I'm having trouble with my Apple ID. I changed my email account, and recently (a month ago) and since I switched is requested every time I open any app to Apple ID password to the old email. How can I solve this? Could it be that my iPhone 4S is in sync w

    I'm having trouble with my Apple ID. I changed my email account, and recently (a month ago) and since I switched is requested every time I open any app to Apple ID password to the old email. How can I solve this? Could it be that my iPhone 4S is in sync with my Ipod???

    If you updated your existing account then try logging out of it on the iPhone by tapping on the id in Settings > iTunes & App Stores and then log back in and see if that 'refreshes' the account on the iPhone. If you created a new account then any content that you purchased/downloaded via the old account will remain tied to that old account, and only that old account can download updates to its apps.

  • I recently added my old mac hard drive to a new macbook with an SSD as my main OSX drive.  I am having trouble with permissions in viewing my old hard drive.  What is the best way to get complete access to my old hd installed in my new Macbook?

    I recently added my old mac hard drive to a new macbook with an SSD as my main OSX drive. I am having trouble with permissions in viewing my old hard drive, when I save a permission when I reboot the full access is changed again .  What is the best way to get complete access to my old hd installed in my new Macbook?

    Open the Get Info window for the old drive. Click the Lock icon on the bottom of that window and type in your password. In the permissions area click the Plus sign ( + ) and Add your Username to it and set it to Read & Write. Close that window. you should now have full access to all the files.

  • Im having trouble with my email. usually i drag emails i want saved to various folders. recently, some of the folders have changed their appearance - looking like a camera body, and less like a folder. these icons seemed to be locked as well, so i can no

    im having trouble with my email. usually i drag emails i want saved to various folders. recently, some of the folders have changed their appearance - looking like a camera body, and less like a folder. these icons seemed to be locked as well, so i can no longer open those folders. help please?

    Ah, now i see that the folder has an icon on it - like a "settings" icon - sort of a wheel

  • I am having trouble with a  lot of pop ups and causing websites and screens to roll slowly, firewall is on, how do i prevent this

    I am having trouble with a  lot of pop ups and causing websites and screens to roll slowly, firewall is on, how do i prevent this

    You installed adware along with something else.
    You can either follow Apple's manual instructions for removing it, or use the free automated tool, AdwareMedic.

  • Okay. I don't know if it's the broadband that I'm using or is it firefox, but I'm having trouble with a certain website namely Tumblr.

    Okay. I don't know if it's the broadband that I'm using or is it firefox, but I'm having trouble with a certain website namely Tumblr. I can login just fine, but everytime it tries to redirect me to its dashboard, it'll direct me to another site instead. I really am not sure if it's firefox or is it my internet broadband is the problem. HELP ME. I NEED TO REBLOG SOMETHING OFF TUMBLR SOOO BAD!

    No problem just happy you got it working again
    Happy Days

  • I am having trouble with Itunes registering the Mp4 video that has been converted.  Help!!

    I am having trouble with Itunes registering the MP4 video that has been converted.  Help!

    What do you mean by iTunes registering the mp4?
    Which iTunes, on iPad, iTunes is a Store and it won't take your .mp4.
    On pc, check if it supports the mp4 (there are a number of different mp4 format) you have converted.
    Can you import it to computer iTunes?

  • All other websites come up fine; Twitter does not. No one else is having trouble with it.

    Twitter does not load. All other websites are loading fine, but none of my friends are having trouble with Twitter.

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Firefox > Preferences > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Firefox > Preferences > Privacy > Cookies: "Show Cookies"
    See also:
    * http://kb.mozillazine.org/Error_loading_websites

  • Having trouble with the messages on mac my friends using it are coming not registered when i try to send them a message

    having trouble with the messages on mac my friends using it are coming not registered when i try to send them a message

    That's probably because they're not registered.
    Messages only works if your friend has an iphone.
    There is a workaround that can work, though.
    set up an AIM account online.
    in System preferences > mail, contacts, and calendars, enter your new AIM account.
    in Contacts, on your friend's contact card, look for AIM. Enter their phone number right before that, with a +1 before it, and the area code:  i.e., +11234567899.
    This doesn't always work. Their cellular carrier has to cooperate with AIM. Some do, some don't. If it doesn't work, tell your friend to get an iPhone.

Maybe you are looking for