Hello
I've been trying to create a website with side navigation like the "Wells template" for a while now.
However, I would prefer to work with the current version as I like the blog functions better.
I tried this code, which actually moved the navigation to the left:
/* Float header */
@media screen and (min-width:992px) {
.header-title {
position: fixed;
top: 3vw;
left: 5vw;
z-index: 9999;
}
.header-nav {
position: fixed;
top: 50%;
left: 5vw;
padding: 0 !important;
transform: translateY(-50%);
}
nav {
flex-direction: column;
}
div.header-nav-item {
margin: 0 !important;
text-align: left !important;
}
div.header-nav-item a{
display: inline-block;
}
.header-actions.header-actions--right {
position: fixed;
left: 5vw;
bottom: 2vw;
justify-content: flex-start !important;
}
.header-actions--right .header-actions-action a {
margin-left: 0 !important;
margin-right: 2.5vw;
}
#page article section.page-section {
max-width: 85%;
margin-left: 13%;
padding-top: 0 !important;
}
}
Only the logo remains at the top of the header. I can move it to the left, but it still remains in the header and that doesn't look very nice, especially since I can't move it to two lines (like I can with the Wells).
Is there a way to move the logo to the left in the navigation?
Many greetings