Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

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

  • 6 replies
  • 2 have this problem
  • 10 views
  • Last reply by 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/

All Replies (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?

Modified by 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.