PM won't display Windfinder.com

For support with specific websites

Moderator: trava90

Forum rules
Please always mention the name/domain of the website in question in your topic title.
Please one website per topic thread (to help keep things organized). While behavior on different sites might at first glance seem similar, they are not necessarily caused by the same.

Please try to include any relevant output from the Toolkit Error Console or the Developer Tools Web Console using the following procedure:
  1. Clear any current output
  2. Navigate or refresh the page in question
  3. Copy and paste Errors or seemingly relevant Warnings into a single [ code ] block.
leograyson

PM won't display Windfinder.com

Unread post by leograyson » 2021-08-24, 04:46

For the last 2/3 years I have been able to see and use the maps at Windfinder.com via Pale Moon. But for the last week or so it appears to access the site, but doesn't display the weather map. It opens a page which shows the advert bar across the top of the page, but the map area is totally blank.
I have tried with all add-ons removed, but get the same result.
I have searched the web and this forum, but got no hits.
I can still access the site and zoom the map with Firefox and MS Edge.

Can anyone here suggest a reason/solution to this problem ??.

Thanks in advance, Leo.

User avatar
Moonchild
Pale Moon guru
Pale Moon guru
Posts: 35602
Joined: 2011-08-28, 17:27
Location: Motala, SE
Contact:

Re: PM won't display Windfinder.com

Unread post by Moonchild » 2021-08-24, 14:06

Please report this to the website owners.
Their CSS has the map end up with a height of 0, which means it's completely collapsed and not visible. I manually edited the CSS on the live site to set a height and the site works perfectly otherwise.
"Sometimes, the best way to get what you want is to be a good person." -- Louis Rossmann
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite

User avatar
Tomaso
Board Warrior
Board Warrior
Posts: 1622
Joined: 2015-07-23, 16:09
Location: Norway

Re: PM won't display Windfinder.com

Unread post by Tomaso » 2021-08-24, 15:18

If you're using uBO, you can apply these rules, as a temporary workaround (until the webmasters have fixed the issue):

Code: Select all

windfinder.com##.map-container:style(position: fixed !important;)
windfinder.com##.mapconfig:style(position: fixed !important;)
windfinder.com##.site-header:style(position: fixed !important;)
There's probably some other elements that needs repositioning too, but at least, the rules above seems to take care of the obvious ones!

coffeebreak
Moon Magic practitioner
Moon Magic practitioner
Posts: 2986
Joined: 2015-09-26, 04:51
Location: U.S.

Re: PM won't display Windfinder.com

Unread post by coffeebreak » 2021-08-24, 19:41

Tomaso wrote:
2021-08-24, 15:18
If you're using uBO, you can apply these rules, as a temporary workaround
Thanks for the rules.
Just FYI, It's also possible to accomplish this, independent of one's adblocker, with userContent.css (that's found in your chrome folder), or with Stylem :

Code: Select all

/*WINDFINDER.COM: DISPLAY-ISSUE WORKAROUND*/
@-moz-document domain("windfinder.com") {
  .site-header, .mapconfig, .map-container {position: fixed !important;}
}

vannilla
Moon Magic practitioner
Moon Magic practitioner
Posts: 2193
Joined: 2018-05-05, 13:29

Re: PM won't display Windfinder.com

Unread post by vannilla » 2021-08-24, 20:29

coffeebreak wrote:
2021-08-24, 19:41
independent of one's adblocker
Off-topic:
In fairness, an advertisment blocking extension shouldn't be concerned with custom user stylesheets in the first place.

User avatar
Moonchild
Pale Moon guru
Pale Moon guru
Posts: 35602
Joined: 2011-08-28, 17:27
Location: Motala, SE
Contact:

Re: PM won't display Windfinder.com

Unread post by Moonchild » 2021-08-24, 20:31

Off-topic:
vannilla wrote:
2021-08-24, 20:29
In fairness, an advertisment blocking extension shouldn't be concerned with custom user stylesheets in the first place.
Actually they should. Style sheets are used to hide ad elements from content.
"Sometimes, the best way to get what you want is to be a good person." -- Louis Rossmann
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite

vannilla
Moon Magic practitioner
Moon Magic practitioner
Posts: 2193
Joined: 2018-05-05, 13:29

Re: PM won't display Windfinder.com

Unread post by vannilla » 2021-08-24, 20:34

Moonchild wrote:
2021-08-24, 20:31
Actually they should. Style sheets are used to hide ad elements from content.
Off-topic:
Even when the style is applied to arbitrary elements outside the purpose of hiding blocks containing recognized ads?

User avatar
Moonchild
Pale Moon guru
Pale Moon guru
Posts: 35602
Joined: 2011-08-28, 17:27
Location: Motala, SE
Contact:

Re: PM won't display Windfinder.com

Unread post by Moonchild » 2021-08-24, 20:58

Off-topic:
vannilla wrote:
2021-08-24, 20:34
Even when the style is applied to arbitrary elements outside the purpose of hiding blocks containing recognized ads?
It's a tool. It might not be its primary purpose but it is a primary function of it. How you decide to use it outside of ad blocking is entirely up to you. Since most people have adblockers and quite a few less people have stylem or know how to deal with user*.css, it's a valid suggestion to make.
"Sometimes, the best way to get what you want is to be a good person." -- Louis Rossmann
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite

User avatar
Tomaso
Board Warrior
Board Warrior
Posts: 1622
Joined: 2015-07-23, 16:09
Location: Norway

Re: PM won't display Windfinder.com

Unread post by Tomaso » 2021-08-24, 21:01

Off-topic:
vannilla wrote:
2021-08-24, 20:29
In fairness, an advertisment blocking extension shouldn't be concerned with custom user stylesheets in the first place.
https://github.com/gorhill/uBlock/wiki/Blocking-mode/ wrote: uBlock Origin is NOT an "ad blocker": it is a wide-spectrum blocker -- which happens to be able to function as a mere "ad blocker".

New Tobin Paradigm

Re: PM won't display Windfinder.com

Unread post by New Tobin Paradigm » 2021-08-24, 21:03

Off-topic:
Ublock is a general content blocker that also includes blocking ads while members of the Adblock Family are adblocker's first and block other kinds and types of content as a consequence of blocking ads.

leograyson

Re: PM won't display Windfinder.com

Unread post by leograyson » 2021-08-27, 23:24

Thanks for the replies. Good to know the problem is not at my end..
I will try to contact the site and pass on the info above.
Leo.

Locked