Move Logo left and up in Aspen

Would like to move the position of the logo in mobile

Hi @MichaelDroste,

Depends on where you want to move it. If along the top, you can add the below custom CSS

figure.theme header.theme .nav_btn {
    right: 40%;
}

Adjust the percentage to wherever along the top you want it.

If you want to move it to the bottom of the page, you’d have to add something like below, again adjusting the percentages to wherever on the page you want the button to be.

figure.theme header.theme .nav_btn {
    right: 40%;
    bottom: 5%;
}

But you might need to adjust the color of the menu button depending on what color your footer is.

Let us know if that doesn’t help.

I meant the logo - not the menu button…. Thank you for your help