Hi, has anyone solved this? I am looking to do a fixed navigation on the right like this
https://www.amazonicorestaurant.com/london/#top
@tuanphan I found this code, which ads the navigation to the left and turns the text 90 degrees,
but I want the text to remain horizontal but on the right side of the site as per the example I sent
// Vertical Navigation //
.header-nav-list {
width: 135vh !important;
padding: 25px;
background: #000000;
position: fixed;
-webkit-transform:rotate(-90deg)translateX(-85%);
-webkit-transform-origin: top left;
left: 0px;
top: 0px;
text-align: center;
z-index: 999;
}
@Leanie
Your code has a syntax error. Is the CSS editor not reporting the the error?
You'll want to fix line 49 and 50 to be something like the following.
[data-section-id="61f7a0e715eb135ee257ac59"] .content-wrapper {
Let us know how it goes.