I’ve been using some custom CSS to move my logo, cart and menu icons to the position I want them to be in, but when I go to a product page they are in different places, is there a way to make sure this affects the entire site? Is there something i’m doing wrong? I’m using the dawn theme.
Cheers
/* Styles for laptop or larger screens */
@media screen and (min-width: 992px) {
.header__heading-logo-wrapper {
position: relative;
top: 10px;
}
.header__icon--cart {
position: relative;
top: 9px;
}
}
/* Styles for mobile devices */
@media screen and (max-width: 991px) {
.header__heading {
display: none;
}
.header__icon--cart {
position: relative;
top: -5px;
}
.header__icon--menu {
position: relative;
top: -5px;
}
.header {
margin-bottom: -12px;
}
}