I am currently working on a website using the Engineer theme. I am a beginner when it comes to Rapidweaver, so I am still trying to figure everything out. In the theme, the menu bar is right-oriented automatically. I wanted to make the menu bar left-oriented, so I was wondering if anyone has any CSS code to make this possible.
I do not have any add-ons, as I am working on an incredibly tight budget. I would really appreciate it if you guys could respond with any CSS code.
Adjust the 50px in the second rule to suit your layout.
/* Engineer Theme - Position Nav items to the left */
.navbar-nav.ml-auto {
margin-left: 0 !important;
}
/* Space Nav items out */
.navbar-nav.ml-auto li {
margin-left: 50px;
}
/*Remove space from first Nav item */
.navbar-nav.ml-auto li:first-of-type {
margin-left: 0px;
}