diff --git a/web/content/docs/userguide/basics/jupyter-notebooks/index.md b/web/content/docs/userguide/basics/jupyter-notebooks/index.md
index 0d8cc655a284e265c6d7dcdb3584a31792a85ef0..21258cd096e42f3a6016085297f8241d703002fe 100644
--- a/web/content/docs/userguide/basics/jupyter-notebooks/index.md
+++ b/web/content/docs/userguide/basics/jupyter-notebooks/index.md
@@ -125,22 +125,6 @@ Please note that this is a temporary installation. If you stop the container the
 
 ### Rendering with PyVista
 
-When using [PyVista][pyvista] the container uses the (interactive) [pythreejs](https://docs.pyvista.org/user-guide/jupyter/pythreejs.html) rendering backend per default. If you want to output static images there are a couple of ways to configure the 'static' rendering backend:
-
-- Globally as an environment variable: `PYVISTA_JUPYTER_BACKEND=static`. This can be defined when starting the container:
-  ```bash
-  docker run ... -e PYVISTA_JUPYTER_BACKEND=static ...
-  ```
-- Globally as a pyvista setting:
-  ```python
-  import pyvista as pv
-  pv.set_jupyter_backend('static')
-  ```
-- Locally on each plot:
-  ```python
-  import pyvista as pv
-  ...
-  pv.show(jupyter_backend='static')
-  ```
+When using [PyVista][pyvista] the container uses the (interactive local rendering) [pythreejs](https://docs.pyvista.org/user-guide/jupyter/pythreejs.html) rendering backend per default. Other backends are currently not supported.
 
 [pyvista]: https://docs.pyvista.org