Re: Embedding Powerapps in Wordpress
Hi @Shazia ,'
Could you tell me you are using an iframe to embed a PowerApps app in WordPress?
If yes, you can make it full screen by modifying the iframe code. Here's how you can do it:
Locate the iframe code used to embed a PowerApps app in WordPress. The iframe code will look like this:
<iframe src="https://yourapp.powerapps.com/" width="600" height="800" frameborder="0"></iframe>
Make a PowerApps app full screen with the height attribute from the iframe code. You should also set the allowfullscreen property to "true" to allow the application to display in full screen mode. The modified iframe code should look like this:
<iframe src="https://yourapp.powerapps.com/" allowfullscreen frameborder="0"></iframe>
Save the modified iframe code and refresh the page where the PowerApps app is embedded. Now, when the user clicks the fullscreen button, the app should display in fullscreen mode.
Note that some browsers may block full screen mode for security reasons. In this case, when the user clicks the fullscreen button, the user will be prompted to allow fullscreen mode.
Best Regards
Cheng Feng