Store url: https://onlinebeautyessentials.com/
Just need to move these three header icons left abit (to above “Contact Us”) with equal spacing
Like this..
A store owner needs to reposition three header icons slightly to the left (above “Contact Us”) on their Dawn theme Shopify store.
Initial Solutions Provided:
.header__icons padding/justification properties using media queries for screens wider than 990pxResolution Process:
Follow-up Adjustments:
.shopify-app-block and specific icon classes with !important flags to ensure proper spacingStatus: Resolved with multiple CSS snippets applied to base.css file for both desktop and mobile views.
Store url: https://onlinebeautyessentials.com/
Just need to move these three header icons left abit (to above “Contact Us”) with equal spacing
Like this..
Hi @Loz86 , go to base.css file and add this snippet :
@media (min-width:990px){
.header.page-width .header__icons {
.padding-right: 14rem !important;
}
hi @Loz86
Check this one.
@media screen and (min-width: 990px){
.header.page-width .header__icons {
padding-right: 0rem !important;
}
}
.header__icons {
justify-self: center !important;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Thanks Abdosamer,
For some reason that didn’t move them but the snippet Made4uo-Ribe provided below did.
Thanks as always anyway!
Thanks, I made a typo mistake, it was the dot before padding-right property.
No problem at all.
Thanks again for the quick response to my question anyway and I’m sure I’ll run into another problem that requires a solution again soon
![]()
Please check this one.
Same Instruction.
.shopify-app-block {
width: 4rem !important;
}
@media only screen and (max-width: 749px){
.header__icons {
margin-right: 3rem;
}
}
And save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Legend, enjoy the coffee ![]()
Check this one.
Same Instruction.
But replace the last code in the css or increase the size and put !important.
@media only screen and (max-width: 749px){
.header__icons {
margin-right: 2rem !important;
}
}
And Save.
In your Base.css File.

The current one.
Change like this.

Result:
Add this one: On the bottom of the base.css.
a.site-header__icon.header__icon.link.link--text.focus-inset.wishlist-hero-header-icon {
width: 4rem !important;
}
And Save.

