Move logo / icons to left on big screen - Dawn theme

Solved

Move logo / icons to left on big screen - Dawn theme

INFRA
Shopify Partner
252 2 90

Hi, 

 

I would like to have my logo and social icons in the announcement bar moved to the left when viewed on a big screen, so it's in line with the header text on the image. Can anyone point me in the right direction?

Thanks so much!

 

Website

password: fbc

Screenshot 2024-10-10 at 10.00.07.png

Accepted Solution (1)

AnneLuo
Shopify Partner
1355 237 277

This is an accepted solution.

You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code before the </head> tag

<style>
.page-width.utility-bar__grid.utility-bar__grid--3-col,
header.header.header--middle-left.header--mobile-center.page-width.header--has-menu.header--has-social.header--has-account {
    max-width: 100% !important;
}
.utility-bar__grid .list-social {
    margin-left: 0 !important; 
}
</style>

Result:

AnneLuo_0-1728519861475.png


Hopefully it will help you. If yes then Please don't forget hit Like and Mark it as solution!

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me   

Buy Me A Coffee

View solution in original post

Replies 2 (2)

AnneLuo
Shopify Partner
1355 237 277

This is an accepted solution.

You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code before the </head> tag

<style>
.page-width.utility-bar__grid.utility-bar__grid--3-col,
header.header.header--middle-left.header--mobile-center.page-width.header--has-menu.header--has-social.header--has-account {
    max-width: 100% !important;
}
.utility-bar__grid .list-social {
    margin-left: 0 !important; 
}
</style>

Result:

AnneLuo_0-1728519861475.png


Hopefully it will help you. If yes then Please don't forget hit Like and Mark it as solution!

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me   

Buy Me A Coffee

INFRA
Shopify Partner
252 2 90

this worked perfectly, thank so much!