Trang web này sẽ có chức năng hạn chế trong khi chúng tôi trải qua bảo trì để cải thiện trải nghiệm của bạn. Nếu một bài viết không giải quyết được vấn đề của bạn và bạn muốn đặt câu hỏi, chúng tôi có cộng đồng hỗ trợ của chúng tôi đang chờ để giúp bạn tại @FirefoxSupport trên Twitter và /r/firefox trên Reddit.

Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

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

  • 6 trả lời
  • 2 gặp vấn đề này
  • 18 lượt xem
  • Trả lời mới nhất được viết bởi 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/

Tất cả các câu trả lời (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?

Được chỉnh sửa bởi viking2 vào

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.