Header Sidebar Won’t Move Lower – Want to Align with Header Logo [closed]

This is more of a css question, but here’s what i found looking at your site:

This selector will control it:

.site-header .widget {
    margin: 40px 0 0 0;
}

this is the code that has padding:

<aside id="dokna_product_search-2" class="widget widget_dokna_product_search">

Or if that doesn’t work try making it more specific:

That box (col-md-8.col-sm-7.clearfix) has no height value, so it’s going to adjust. It could be specicifity though. Try this:

   .site-header #dokna_product_search-2 {
        margin: 40px 0 0 0;
    }

You can add !important to the css, but that sometimes adds more confusion in the long run.

Add the code. Let me know if it works, but leave it in so we can confirm it’s there.