
Hi @frob ,
For SharePoint Online modern pages, there are no out-of-the-box approaches to remove the left navigation(AKA. quick launch). The supported way to do this would be to deploy an SPFx extension (so it is applied to all pages in the site) that implements CSS to make the changes you are after. The CSS to hide the left hand nav on a modern page is:
nav[role='navigation'] {
display: none !important;
}
div[class^='pageContainer_'] {
left: 0 !important;
}
Moreover, some third party tools may provide you with such option to hide left navigation. For example: How to Hide Quick Launch / Left Navigation from Modern SharePoint Team Sites.
Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.
----------
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.