Forum Discussion
Controlling fullscreen mode using URL
- 4 years ago
Add ?chromeless=true at the end of your URL if you have no existing parameters. You can also combine chromeless=true with url filters using an ampersand (&). This follows how URL parameters work on most websites (e.g. Google search results).
Add ?chromeless=true at the end of your URL if you have no existing parameters. You can also combine chromeless=true with url filters using an ampersand (&). This follows how URL parameters work on most websites (e.g. Google search results).
Just in case anyone else stumbles across this, I think it is supposed to be '?' not '&'.
(at least it was for the URL I was using)
e.g. ?chomeless=true
- otravers3 years agoCommunity Champion
Thanks for pointing that out, I corrected my post.
- PowerWhy3 years agoHelper IV
? starts the GET variables section at the end of a URL, if there are other GET variables then you need to use & to add it to the end of the list. If there are no other GET variables then use ? to start the GET variable section. Hope that make sense?