Search…

X3 Photo Gallery Support Forums

Search…
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14469
Joined: 30 Sep 2006, 03:37

Re: Different slideshow for start page according to landscape and portrait format

11 Jul 2025, 23:37

Please use this:
Code
if(!matchMedia('(min-aspect-ratio: 1/1)').matches) location.replace('/mindex/');
Your current code:
Code
if(!matchMedia('(min-aspect-ratio: 1/1)')) location.replace('/mindex/');
I have never had any code in the mindex page only the real index... as you can see in the screenshot above.
Not sure what you experienced, but that code basically just said "redirect to /mindex if the page is not already /mindex", but the page would never have been /mindex unless you also pasted the code there. That code you added, basically triggered the redirection on both mobile and desktops, regardless of aspect.