Change cart position in dawn theme - mobile version

We would like to change the height / position of the cart icon to the same level as the menu. Can anyone help? It only appears on the mobile version different…

www.sternenbilder.ch

this is not helpful at all… no solution here

Please remove this code from your base.css file.

.header .header__icons .header__icon--cart{
  position: relative !important;
    top: 60px !important;
    font-size: 2000px!important;
}

There is some code which make your menu be overlaid with image:

And then you also have this:

Both codes were added to your assets/base.css file, so I guess they had their purpose, but why?

I’d remove both of them.

@sternenbilder you have following code in your base.css file, kindly remove top css property line, so it will be like the screenshot below

.header .header__icons .header__icon--cart {
    position: relative !important;
    top: 60px !important;  /****** REMOVE THIS ENTIRE LINE *****/
    font-size: 2000px !important;
}

thank you very much!