Align wishlist icon on header and make hero section full width - Dawn theme

Solved

Align wishlist icon on header and make hero section full width - Dawn theme

Dekanten
Navigator
325 1 117

Hi

 

I want to align the wishlist icon on the page and make the hero section full with, can this be possible in a simple way? Thank you in advance. 🙂

 

www.dekanten.no

 

See attached image:

 

Skjermbilde 2024-09-08 kl. 17.03.45.png

Accepted Solutions (5)

BSSCommerce-B2B
Shopify Partner
1718 512 575

This is an accepted solution.

Step 1. Go to Admin -> Online store -> Theme > Edit code

Step 2. Find the file theme.liquid.

Step 3. Add this code before </body>

 

<style>
.header__icon.st-wishlist-details-button {
  align-items: start!important;
  margin-top: 5px!important;
}
</style>

 

Result:

BSSCommerceB2B_0-1725808289760.png

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

View solution in original post

BSSCommerce-HDL
Shopify Partner
2298 847 1061

This is an accepted solution.

Hi @Dekanten

Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above </head> tag:

<style>
a.header__icon svg {
    margin-bottom: 0 !important;
}
</style>

 Here is result: 

BSSCommerceHDL_0-1725808378167.png

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

View solution in original post

Tech_Coding
Shopify Partner
301 76 67

This is an accepted solution.

Hello @Dekanten 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
  .header__icons .icon {
       margin-bottom: 0 !important;
    }  
   #shopify-block-easy_content_builder_section_title_GgnwY7 .container-inner.uk-align-center{
       max-width: 100% !important;
   }
</style>

Tech_Coding_0-1725808650719.png

Tech_Coding_1-1725808781792.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.

View solution in original post

BSSCommerce-HDL
Shopify Partner
2298 847 1061

This is an accepted solution.

Hi @Dekanten

Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above </head> tag:

<style>
div#shopify-block-easy_content_builder_section_title_GgnwY7 .container-inner {
    max-width: 100% !important;
}
</style>

 Here is result: 

BSSCommerceHDL_0-1725809081485.png

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you  😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

View solution in original post

BSSCommerce-HDL
Shopify Partner
2298 847 1061

This is an accepted solution.

Hi @Dekanten

Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above </head> tag:

 

<style>
.shopify-section-header-hidden {
    transform: translateY(0) !important;
}
</style>

 

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

View solution in original post

Replies 15 (15)

BSSCommerce-B2B
Shopify Partner
1718 512 575

This is an accepted solution.

Step 1. Go to Admin -> Online store -> Theme > Edit code

Step 2. Find the file theme.liquid.

Step 3. Add this code before </body>

 

<style>
.header__icon.st-wishlist-details-button {
  align-items: start!important;
  margin-top: 5px!important;
}
</style>

 

Result:

BSSCommerceB2B_0-1725808289760.png

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

Dekanten
Navigator
325 1 117

This works like a charm so everything is just fine now, glad to make this working out with help from both of you. 🙂

BSSCommerce-B2B
Shopify Partner
1718 512 575

@Dekanten , try this code to help you remove the white gap field

<style>
.shopify-section-header-hidden {
    transform: translateY(0) !important;
}
</style>

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

BSSCommerce-HDL
Shopify Partner
2298 847 1061

This is an accepted solution.

Hi @Dekanten

Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above </head> tag:

<style>
a.header__icon svg {
    margin-bottom: 0 !important;
}
</style>

 Here is result: 

BSSCommerceHDL_0-1725808378167.png

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

Dekanten
Navigator
325 1 117

Thank you guys this works like a charm and really glad for that. Big thumbs up there to both of you. 🙂

 

Can you also help me with the hero section width please, its look aweful on large screens. 🙂 Thanks again. 🙂

BSSCommerce-HDL
Shopify Partner
2298 847 1061

This is an accepted solution.

Hi @Dekanten

Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above </head> tag:

<style>
div#shopify-block-easy_content_builder_section_title_GgnwY7 .container-inner {
    max-width: 100% !important;
}
</style>

 Here is result: 

BSSCommerceHDL_0-1725809081485.png

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you  😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

Tech_Coding
Shopify Partner
301 76 67

This is an accepted solution.

Hello @Dekanten 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
  .header__icons .icon {
       margin-bottom: 0 !important;
    }  
   #shopify-block-easy_content_builder_section_title_GgnwY7 .container-inner.uk-align-center{
       max-width: 100% !important;
   }
</style>

Tech_Coding_0-1725808650719.png

Tech_Coding_1-1725808781792.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.
Dekanten
Navigator
325 1 117

Hi to you, and this works flawless and really glad too see the final result, everything is so clean and nice. You guys are awesome. Masters on top levels. 🙂 Big thumbs and thanks again you miracleguys. 🙂

Dekanten
Navigator
325 1 117

While trying this code i have a white gap field between header menu and hero section, any methood to make this section working without gap? 🙂

Tech_Coding
Shopify Partner
301 76 67

can you please share screenshot?

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.
Dekanten
Navigator
325 1 117

Skjermbilde 2024-09-08 kl. 17.32.13.png

 

Here is the gap and this arrives while scrolling slow, its open a white space between these sections. The menuheader dissappear, strange behaviour actually. Hope there is a fix. 🙂

BSSCommerce-HDL
Shopify Partner
2298 847 1061

This is an accepted solution.

Hi @Dekanten

Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above </head> tag:

 

<style>
.shopify-section-header-hidden {
    transform: translateY(0) !important;
}
</style>

 

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

Dekanten
Navigator
325 1 117

Thank u so much my dear friend, this is flawless and all things works like a charm. This is amazing, thank you very much indeed. 😀

BSSCommerce-HDL
Shopify Partner
2298 847 1061

@Dekanten, No problem. Glad to help you 😍 

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

Tech_Coding
Shopify Partner
301 76 67

sorry for late reply @Dekanten ... I was busy with some urgent work..I saw that your problem is solved by @BSSCommerce-HDL Thank you so much.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.