How to move the navigation bar to the right on Dawn theme?

  1. How can I get the navigation to sit on the right hand side instead of the left.
    This is the code I put in the base.css to place it where it is.

.header__inline-menu {
position: absolute;
top: 136%;
left: 15px;
}
.list-menu–inline {
display: flex;
flex-wrap: wrap;
flex-direction: column;
}

  1. Also how can I get the background of the dropdown navigation to also be black

Hi @xktheory , you can try:

  1. Add CSS .header__inline-menu {
    position: absolute;
    top: 136%;
    right: 15px;
    }

  2. Add CSS .list-menu–inline {
    background-color: #000;
    }