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!

Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Learn More

Prevent orange popup at screen bottom on foxnews.com?

  • 2 απαντήσεις
  • 1 έχει αυτό το πρόβλημα
  • 2 προβολές
  • Τελευταία απάντηση από ajm115834

more options

How do I prevent the orange popup screen on the bottom of the foxnews.com page? I have Adblock Plus and uBlock Origin installed--is there a setting in one or both of these add-ons that would do it?

How do I prevent the orange popup screen on the bottom of the foxnews.com page? I have Adblock Plus and uBlock Origin installed--is there a setting in one or both of these add-ons that would do it?
Συνημμένα στιγμιότυπα

Επιλεγμένη λύση

That is a DIV with class="alert-container".

I'm not using content blocker and would use code in userContent.css instead.

Add code to the userContent.css file.


@-moz-document domain(www.foxnews.com){
.alert-container {display:none!important;}
}

  • create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • use a plain text editor like Notepad to create a (new) userContent.css file in the chrome folder (file name is case sensitive)
  • paste the code in the userContent.css file in the editor window
  • make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userContent.css.
    otherwise Windows may add a hidden .txt file extension and you end up with a not working userContent.css.txt file
Ανάγνωση απάντησης σε πλαίσιο 👍 0

Όλες οι απαντήσεις (2)

more options

Επιλεγμένη λύση

That is a DIV with class="alert-container".

I'm not using content blocker and would use code in userContent.css instead.

Add code to the userContent.css file.


@-moz-document domain(www.foxnews.com){
.alert-container {display:none!important;}
}

  • create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • use a plain text editor like Notepad to create a (new) userContent.css file in the chrome folder (file name is case sensitive)
  • paste the code in the userContent.css file in the editor window
  • make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userContent.css.
    otherwise Windows may add a hidden .txt file extension and you end up with a not working userContent.css.txt file
more options

It worked! Thanks, Cor-el!