Search bar is appearing on top of the navigation bar in Dawn Theme

Hi ,

I am using Dawn Theme and search bar is appearing on top of the navigation bar both in destop & mobile view. I want search bar to appear under the navigation bar. Second issue when typing in search it all appears with transparent background and I want it with white background. Please advice how to fix these issues.

www.besteveters.com

Go to component-search.css and add the following code :

.search__input.field__input {
    padding-right: 9.8rem;
    background-color: #fff !important;
}

To reposition it, go to base.css and add the following:

.search-modal__content {
    display: flex;
    align-items: end !important;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 5rem 0 1rem;
    line-height: calc(1 + .8 / var(--font-body-scale));
    position: relative;
    margin-bottom: 10rem !important;
}

Thank you so much it works!

Glad it helped, feel free to contact me if you need any help.

It does not work please see the image below

@Besteveters , go to component-predictive-search.css and add the following :

.predictive-search__results-groups-wrapper {
   
    background-color: #fff !important;
}

Thanks a ton it worked!!!