-
How to show separator pipe |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Replace the existing header with your own header by making a new file in layouts -> partials -> header -> header.html. You can look at the example from the 'getdoks' website if this is not clear for you. modified file with separator : |
Beta Was this translation helpful? Give feedback.
Replace the existing header with your own header by making a new file in layouts -> partials -> header -> header.html.
Here you can copy your existing one from the doks-core (located in your npm module folder under Hyas). Now modify it for the piping. You want to look for '' in this file and add this bit of code
<li class="nav-item d-none d-lg-flex py-1 col-auto"> <div class="vr h-100 mx-2 text-muted"></div> </li>
directly under<ul id="socialMenu" class="nav mx-auto flex-row order-lg-4">
You can look at the example from the 'getdoks' website if this is not clear for you.
Your original file:
https://github.com/gethyas/doks-core/blob/main/layouts/partials/header/header.html (row 243)
modi…