I’m trying to move the search icon of my Shopware 6 theme
more to the left.
The search icon is currently the most right element in a row of icons.
Here’s the relevant SCSS code for the search icon:
<code>.header-search-btn, .header-search-icon, .icon-custom-icons-Search {
order: -4;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
</code>
<code>.header-search-btn, .header-search-icon, .icon-custom-icons-Search {
order: -4;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
</code>
.header-search-btn, .header-search-icon, .icon-custom-icons-Search {
order: -4;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
it doesn’t seem to have the desired effect.
Any help would be appreciated. Thanks!