Dawn - move menu to the left in announcement bar

Hi,

I want to move the menu and shopping bag icon from under the logo to the announcement bar, positioned left. Would be nice if the “free shipping” - text could be removed

https://392qc7dkhs89xw8r-61803987143.shopifypreview.com

Hi @JosephineJ .

This is PageFly - Advanced Page Builder.

You can go to Online store => themes => actions => edit code and add this code on file base.css

@media only screen and (min-width: 1200px){
#shopify-section-announcement-bar{
z-index: unset;
}
nav.header__inline-menu{
position: relative;
bottom: 155px;
right: 350px;
}
}

Hope this answer helps.

Best Regards,

PageFly

Hi, it worked, but is seems as if it has just been pushed to look like it is in the announcement bar, is there any way to make the position relative to the screen width? Right now it disappears if it is not displayed in full screen

I changed to code to this and now it works - thank you

@media only screen and (min-width: 900px){
#shopify-section-announcement-bar{
z-index: unset;
}
nav.header__inline-menu{
width: 100%;
position: relative;
bottom: 155px;
}
}