Dette websted vil have begrænset funktionalitet, mens vi gennemgår vedligeholdelse for at forbedre din oplevelse. Hvis en artikel ikke løser dit problem, og du vil stille et spørgsmål, har vi vores supportfællesskab, der venter på at hjælpe dig på @FirefoxSupport på Twitter og/r/firefox på Reddit.

Søg i 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.

Læs mere

Unable to access a Website jpg list

  • 2 svar
  • 1 har dette problem
  • 5 visninger
  • Seneste svar af cor-el

more options

Accessing :Politico.com there is a Politico Wuerker cartoon 'list'. The first item is always available. To migrate to any following item on the list I get a "you may skip ad in" with no further text. In the past, refresh would allow the next cartoon to be shown. Now, refresh returns to the first cartoon.

Current operation:

  1. Select the URL above
  2. Select any of the numbered bubbles on the bottom or the right 'arrow'
  3. "you may skip ad in" is displayed.
  4. Select refresh, and we start over.

In the past, refresh would migrate to the next jpg image.

On microsoft edge, in the past, (1) there was a right block arrow, (2) clicking on the arrow gets you to the "you may skip ad in" message, and displayed with this is a check box to allow skipping the ad.

As just a curiosity, why did Firefox elect to change the right block arrow to a rectangular black image?

thanks

Accessing :[https://www.politico.com/cartoons/2021/05/03/may-2021-000191?slide=0 Politico.com] there is a Politico Wuerker cartoon 'list'. The first item is always available. To migrate to any following item on the list I get a "you may skip ad in" with no further text. In the past, refresh would allow the next cartoon to be shown. Now, refresh returns to the first cartoon. Current operation: # Select the URL above # Select any of the numbered bubbles on the bottom or the right 'arrow' # "you may skip ad in" is displayed. # Select refresh, and we start over. In the past, refresh would migrate to the next jpg image. On microsoft edge, in the past, (1) there was a right block arrow, (2) clicking on the arrow gets you to the "you may skip ad in" message, and displayed with this is a check box to allow skipping the ad. As just a curiosity, why did Firefox elect to change the right block arrow to a rectangular black image? thanks

Ændret af cor-el den

Valgt løsning

This works properly for me if I disable Enhanced Tracking Protection and I get the button to skip the ad.

Firefox shows a purple shield instead of a gray shield at the left end of the location/address bar in case Enhanced Tracking Protection is blocking content. You can click shield icon for more detail and possibly disable the protection. You can check the Web Console for messages about blocked content.

Læs dette svar i sammenhæng 👍 1

Alle svar (2)

more options

Valgt løsning

This works properly for me if I disable Enhanced Tracking Protection and I get the button to skip the ad.

Firefox shows a purple shield instead of a gray shield at the left end of the location/address bar in case Enhanced Tracking Protection is blocking content. You can click shield icon for more detail and possibly disable the protection. You can check the Web Console for messages about blocked content.

more options

You can possibly hide the ads via code in userContent.css leaving only the timer message and the skip button.

Add code to the userContent.css file.


@-moz-document domain(www.politico.com){
 iframe[id^="google_ads_iframe"] {
    opacity: 0;
 }
#OUTBRAIN {display:none !important;}
}

In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

  • toolkit.legacyUserProfileCustomizations.stylesheets = true

Ændret af cor-el den