How do I make Announcement bar and header sticky in dawn theme?

I googled and everywhere it says there should be an option inside customize but its not there in my case. I tried editing the css but no luck either.

https://zi61rz-vh.myshopify.com/

@tndgarage - what is the password to view page?

behawy

@tndgarage

please add this css to the very end of your base.css file and check,
Shopify Admin → Online Store ->Theme → Edit code → base.css

@media screen and (min-width:1199px){
.announcement-bar-section{position: fixed;  width: 100%;}
.section-header {position: fixed !important; top: 35px !important;}

#MainContent{margin-top: 200px;}
}

Hi @tndgarage

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

.announcement-bar-section {
    position: fixed !important;
    width: 100% !important;
}

sticky-header.header-wrapper.color-scheme-1.gradient.header-wrapper--border-bottom {
    margin-top: 39px !important;
    position: fixed !important;
}

main#MainContent {
    margin-top: 179px !important;
}

Result

Best,

DaisyVo

ty so much

Thank you so much