How can I align my header icons with my logo on mobile?

How do I move all my header icons downward on mobile? So that they are aligned with my logo.

url is https://wintheoryco.com/products/crysta%E2%84%A2-led-lamp?_pos=1&_psq=crys&_ss=e&_v=1.0

Hi @EthanOSHOP

check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

@media only screen and (max-width: 989px){
header-drawer, .header__icons {
    padding-top: .75rem;
}
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!