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

How can I remove the MSN Bing Web Search pop-up at the bottom of MSN.com.

  • 3 trả lời
  • 3 gặp vấn đề này
  • 1 lượt xem
  • Trả lời mới nhất được viết bởi ivanovnegro

more options

I had Sweetpack toolbar and had to reset Firefox to get rid of it. At one time I had that pop-up removed from the MSN.com page but now it comes up again.****** and is the reason I switched to Firefox to begin with. **** HELP!!


Edited by a moderator due to language. See the Rules & Guidelines .

I had Sweetpack toolbar and had to reset Firefox to get rid of it. At one time I had that pop-up removed from the MSN.com page but now it comes up again.****** and is the reason I switched to Firefox to begin with. **** HELP!! ''Edited by a moderator due to language. See the [http://support.mozilla.com/kb/Forum+and+chat+rules+and+guidelines Rules & Guidelines] .''

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

Giải pháp được chọn

In my case that is doable with Adblock Plus. Just block that popup with a right click. Or close it, the popup has an "x", it should not come up again if you allow to save cookies on that site IMO.

Đọc câu trả lời này trong ngữ cảnh 👍 1

Tất cả các câu trả lời (3)

more options

If you have a few minutes... you could try suppressing that part of the page with a custom style rule. For example:

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("www.msn.com") {
  #subfoot {display:none !important}
}

There are two ways to apply that.

(1) A userContent.css file (info on how to create/edit that file in this post: https://support.mozilla.org/questions/949106#answer-404166)

(2) A userstyle in the Stylish extension (info on how to create a rule in Stylish in this post: https://support.mozilla.org/questions/934019#answer-358059)

more options

The above rule also removes the normal search box at the bottom of the screen since it seemed more reliable to target the whole area. If you want to be a bit more surgical, try this rule instead:

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("www.msn.com") {
  #ls1, #subfoot > div:nth-of-type(2) {display:none !important}
}

That targets the moving box by its current id (as I see it) and also by its position as the second division in the subfoot (in case the id changes frequently).

more options

Giải pháp được chọn

In my case that is doable with Adblock Plus. Just block that popup with a right click. Or close it, the popup has an "x", it should not come up again if you allow to save cookies on that site IMO.