Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

Learn More

The links on some websites don't work (Works in Chrome)

  • 6 réponses
  • 2 ont ce problème
  • 18 vues
  • Dernière réponse par cor-el

more options

The links on some websites don't work in Firefox, but they work in Chrome. Nothing happens when clicking on the link. For example, try clicking on the "Features" link on this site: http://mysleepbot.com/

The links on some websites don't work in Firefox, but they work in Chrome. Nothing happens when clicking on the link. For example, try clicking on the "Features" link on this site: http://mysleepbot.com/

Toutes les réponses (6)

more options

The problem is in website css, if you check the console(Ctrl+Shift+K) you can see some styles being dropped. The phones' image is staying exactly over the menu.

more options

Thank you for your answer, but I am sorry that I do not understand...

I have never used the Console. If I open it on another website (e.g. this Mozilla support page), I get a bunch of info. If I open it on http://mysleepbot.com/ it is blank. Not sure what to do with this?

Can I somehow make the website links to work in Firefox or is it a fixable bug? As I mentioned above, the links work fine in Chrome.

p.s. What did you mean by "The phones' image is staying exactly over the menu." How can you see that?

Modifié le par viking2

more options

The solution is notify the site owners, they can solve this problem, I mentioned the console only to you know the problem is on website not in your browser. There are differences between Firefox and Chrome, this is why the page works in one and not another, probably some CSS selector is not supported by Firefox is the problem

more options

It is caused by the margin-top:-60px setting for the DIV .hero_device right container. This causes this container to cover the DIV .navheader (the top part of the Sign Up button is still active).

Reducing to margin-top:-20px make the line clickable.

.hero_device {
    background: url('/resources/public2/img/hero_device.png') no-repeat;
    height: 760px;
    width: 630px;
    display:inline;
    padding: 0 10px 0 0;
    margin: -60px 0 0 0; /* change to margin: -20px 0 0 0; */
    position:absolute;

}
more options

I I have found several sites with this issue (works in Chrome but not in Firefox). Couldn't the CCS selector be "fixed" in Firefox? Otherwise, I would need to switch to Chrome every time I encounter a problematic website.

more options

Actually Google Chrome shows an a issue as well on that page as the container I mentioned above covers the bottom part of the Sign UP button (below the text), so it is less worse than in Firefox.