X-Plane.org forum/website problem...

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.
f-117
Fanatic
Fanatic
Posts: 134
Joined: 2017-02-04, 20:41

X-Plane.org forum/website problem...

Post by f-117 » 2026-04-23, 15:25

When I go to https://forums.x-plane.org/ the screen/site does not render properly...
This is what I see...
x-plane forum BAD.png
This is what it should look like. (In Waterfox)
x-plane forum good.png
Does anyone else get this? Is there any fix?

Scott
You do not have the required permissions to view the files attached to this post.

User avatar
Gemmaugr
Astronaut
Astronaut
Posts: 692
Joined: 2025-02-03, 07:55

Re: X-Plane.org forum/website problem...

Post by Gemmaugr » 2026-04-23, 16:03

Code: Select all

TypeError: ips.loader is undefined[Learn More]  
root_library.js:12:150
	boot/< https://forums.x-plane.org/static/js/global/root_library.js:12:150
TypeError: ips.loader is undefined[Learn More]  
root_library.js:13:116
	boot/< https://forums.x-plane.org/static/js/global/root_library.js:13:116
SyntaxError: ':popover-open' is not a valid selector  
root_component_navigationMenu.js:1
	connectedCallback/< https://forums.x-plane.org/static/js/global/root_component_navigationMenu.js:1:549
	forEach self-hosted:383:7
	connectedCallback https://forums.x-plane.org/static/js/global/root_component_navigationMenu.js:1:471
	registerWebComponent https://forums.x-plane.org/static/js/global/root_framework.js:224:232
	<anonymous> https://forums.x-plane.org/static/js/global/root_component_navigationMenu.js:20:106
	<anonymous> https://forums.x-plane.org/static/js/global/root_component_navigationMenu.js:20:258
	onStopRequest chrome://hterr/content/grabber.js:416:27
	onStopRequest chrome://decdn/content/interceptor.js:846:27
	next self-hosted:1386:9
SyntaxError: ':popover-open' is not a valid selector 
root_component_dropdown.js:1
	connectedCallback https://forums.x-plane.org/static/js/global/root_component_dropdown.js:1:456
	registerWebComponent https://forums.x-plane.org/static/js/global/root_framework.js:224:232
	<anonymous> https://forums.x-plane.org/static/js/global/root_component_dropdown.js:42:8
	<anonymous> https://forums.x-plane.org/static/js/global/root_component_dropdown.js:42:136
||OS: Win 10 | CPU: i7 10700 | GPU: GeForce RTX 3070||
"Judge a person not by their superficial identity attributes, but by the content of their character."
"Organized Identity Politics are the bane of civilized society."

User avatar
adoxa
Astronaut
Astronaut
Posts: 644
Joined: 2019-03-16, 13:26
Location: Qld, Aus.

Re: X-Plane.org forum/website problem...

Post by adoxa » 2026-04-24, 03:05

f-117 wrote:
2026-04-23, 15:25
Is there any fix?
Until Issue #2230 (UXP) is implemented stick with Waterfox (there's just too much to work around).

f-117
Fanatic
Fanatic
Posts: 134
Joined: 2017-02-04, 20:41

Re: X-Plane.org forum/website problem...

Post by f-117 » 2026-06-02, 17:41

Ok, Just updated to 34.3.0. Here is what the site looks like now...
x-planescreen.png
It looks a little better, but not much compared to what it should... (Still missing the "white" menu list at the top)

Scott
You do not have the required permissions to view the files attached to this post.

User avatar
Night Wing
Knows the dark side
Knows the dark side
Posts: 5996
Joined: 2011-10-03, 10:19
Location: Piney Woods of Southeast Texas, USA

Re: X-Plane.org forum/website problem...

Post by Night Wing » 2026-06-03, 00:28

f-117 wrote:
2026-06-02, 17:41
Ok, Just updated to 34.3.0. Here is what the site looks like now...

It looks a little better, but not much compared to what it should... (Still missing the "white" menu list at the top)

Scott
I get the same look as you and I am using 64 bit (GTK2) linux Pale Moon (34.3.0).
MX Linux 25.2 (Infinity) Xfce w/Pale Moon, Waterfox, Firefox
Linux Debian 13.5 (Trixie) Xfce w/Pale Moon, Waterfox, Firefox

User avatar
adoxa
Astronaut
Astronaut
Posts: 644
Joined: 2019-03-16, 13:26
Location: Qld, Aus.

Re: X-Plane.org forum/website problem...

Post by adoxa » 2026-06-03, 01:38

The colors are wrong because calc is not supported within a color definition (e.g. oklch(100% 100% 0) is white, but oklch(calc(100%) 100% 0) is invalid). The display is wrong because :has is not supported, which is used to override the grid layout. Here's a userstyle to fix the menu and initial layout, but I didn't look any further than that.

Code: Select all

@-moz-document domain("forums.x-plane.org") {
  .ipsGrid.ipsGrid_collapsePhone {
    grid-template-columns: repeat(12, 1fr) !important;
  }
  .ipsHeader__secondary {
    color: white;
  }
  .ipsNav__dropdown {
    color: black !important;
    background-color: white !important;
  }
}