diff --git a/Docs/python_api.md b/Docs/python_api.md
index fe053a615..02e56de0a 100644
--- a/Docs/python_api.md
+++ b/Docs/python_api.md
@@ -1,5 +1,5 @@
#Python API reference
-This reference contains all the details about latest version of the Python API. To consult a valid reference for a specific CARLA release, please select it from the list hereunder.
Warning! These links change the version of the documentation to a previous state. Make sure to go back to the latest to get the updated version of the docs.
Previous references
+This reference contains all the details the Python API. To consult a previous reference for a specific CARLA release, change the documentation version using the panel in the bottom right corner.
This will change the whole documentation to a previous state. Remember to go back to latest to get the details of the current state of CARLA.
## carla.Actor
CARLA defines actors as anything that plays a role in the simulation or can be moved around. That includes: pedestrians, vehicles, sensors and traffic signs (considering traffic lights as part of these). Actors are spawned in the simulation by [carla.World](#carla.World) and they need for a [carla.ActorBlueprint](#carla.ActorBlueprint) to be created. These blueprints belong into a library provided by CARLA, find more about them [here](bp_library.md).
diff --git a/PythonAPI/docs/doc_gen.py b/PythonAPI/docs/doc_gen.py
index a14a45865..b0cd9de01 100755
--- a/PythonAPI/docs/doc_gen.py
+++ b/PythonAPI/docs/doc_gen.py
@@ -584,19 +584,8 @@ class Documentation:
md = MarkdownFile()
md.first_title()
md.textn(
- "This reference contains all the details about latest version of the Python API. To consult a valid reference for a specific CARLA release, please select it from the list hereunder.
"
- +"
Warning! These links change the version of the documentation to a previous state. Make sure to go back to the latest to get the updated version of the docs.
"
- +"Previous references
")
+ "This reference contains all the details the Python API. To consult a previous reference for a specific CARLA release, change the documentation version using the panel in the bottom right corner.
"
+ +"This will change the whole documentation to a previous state. Remember to go back to latest to get the details of the current state of CARLA.
")
for module_name in sorted(self.master_dict):
module = self.master_dict[module_name]
module_key = module_name