搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

Some links become unclickable when zooming in.

  • 12 回覆
  • 1 有這個問題
  • 69 次檢視
  • 最近回覆由 YairGOW

more options

Hi, all :)

Lately, I've been having a problem with some links: they become unclickable when zooming in(Ctrl + Mouse Wheel), but when doing some mild zooming out, it becomes clickable again.

Here are some screenshots I've taken, to make my problem clearer:

http://i.imgbox.com/adlB9NtJ.png As you can see, when zoomed in so it would fill the screen, the mouse cursor isn't detecting any hyperlink and clicking on it won't link me to the desired page.

http://i.imgbox.com/adyPwwFh.png In here, as you can see from the mouse cursor, after zooming out a little, it becomes clickable again.

I would really appreciate if anyone could offer any solution to this. Thanks.

Hi, all :) Lately, I've been having a problem with some links: they become unclickable when zooming in(Ctrl + Mouse Wheel), but when doing some mild zooming out, it becomes clickable again. Here are some screenshots I've taken, to make my problem clearer: http://i.imgbox.com/adlB9NtJ.png As you can see, when zoomed in so it would fill the screen, the mouse cursor isn't detecting any hyperlink and clicking on it won't link me to the desired page. http://i.imgbox.com/adyPwwFh.png In here, as you can see from the mouse cursor, after zooming out a little, it becomes clickable again. I would really appreciate if anyone could offer any solution to this. Thanks.

由 YairGOW 於 修改

被選擇的解決方法

I think you could use a style rule like the following to remove the left and right side ads, either in userContent.css or using the Stylish extension:

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("one.co.il") {
  #adTower600, #divTopRightAds {display:none !important;}
}

I'm having trouble testing this because on my regular profile the ads are suppressed in some other manner, and in a new profile I didn't have Stylish... I'll try to confirm.

從原來的回覆中察看解決方案 👍 1

所有回覆 (12)

more options

Try to disable hardware acceleration in Firefox.

Start Firefox in Safe Mode to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).

  • Do NOT click the Reset button on the Safe Mode start window or otherwise make changes.
more options

I think I've discovered what causes the problem. This site has ads on the sides, so when zooming in, Adblock blocks the ads, and since they are "over" the page, the entire area becomes unclickable. When, zooming out a little, the ads are on the white borders and don't interfere with the page itself. I've checked it by disabling Adblock, of course, and noticing the ads on the side. Example of the ads: http://i.imgbox.com/adiLzO19.png

Is there any way around it, then?

more options

I don't use AdBlock Plus, so this is just a guess. If the extension removes the ads but leaves a container element, you could try this extension. It adds "Remove this object" to the right-click menu.

https://addons.mozilla.org/firefox/addon/nuke-anything-enhanced/

Afterwards, it changes to "Undo last remove" if you discover that you removed the wrong thing.

more options

It works, but each time I enter the page, I have to do the removing all over again. Is there a way to make the removed objects stay removed permanently?

more options
more options

It still comes back when I reenter the website, even after using RIP :\

more options

What is the URL of the page?

more options

選擇的解決方法

I think you could use a style rule like the following to remove the left and right side ads, either in userContent.css or using the Stylish extension:

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("one.co.il") {
  #adTower600, #divTopRightAds {display:none !important;}
}

I'm having trouble testing this because on my regular profile the ads are suppressed in some other manner, and in a new profile I didn't have Stylish... I'll try to confirm.

more options

Thank you, jscher2000! Editing userContent.css according to your instructions worked :)

Btw, any explanation on the terms used in the script would be really appreciated.

more options

The style rule targets the specific html elements <div id="adTower600"> <div id="divTopRightAds"> -- in a style rule, you use a # sign before the id to indicate that it is an id -- and prevents them from displaying by setting display:none. You can read more about CSS rules here: https://developer.mozilla.org/docs/CSS.

more options

Again, thank you.