Menu On the Page Left Side

Has anyone figured a way to get a menu vertically on the left of the page?

Hey Mark :wave:

@frederikdc might know more about this. :slightly_smiling_face:

1 Like

You can create a layout with 2 columns and put the menu in a Vertical orientation in the first column.

The drawback here is that the menu will always take up half your screen. There are two options to overcome this:

  1. We are working on a feature that allows you to set custom sizes for a column. In that case, you can set the width of the first column to for example 20%. The drawback here is that you will need to repeat the menu on every page since you cannot store it in a Multi-page header
  2. Have a look at the second demo in the Custom code demos template. This shows how you can override the column width. Drawback here is that this only will be done on the first page. So, you need to implement a MutationObserver to execute the script on every page (note: don’t go there if you are not familiar with JavaScript)
1 Like

Thanks for this @frederikdc I think I will be waiting for Option 1 to happen :grinning_face:

I didn’t know MutationObserver was a thing :sweat_smile: