Logo position

Solved

Logo position

FashionDose
Tourist
9 0 6

Hi, I'm using Turbo theme and I want part of the logo to come out of the menu bar. I mean half of the logo to be in the menu bar and the other half to cover part of the slideshow sector.

I want it to turn out like the picture.

Thank you!

f9fd5a66-d182-4fc1-8f32-bcf5364b9b5b.png

Accepted Solutions (2)

Made4uo-Ribe
Shopify Partner
8221 1973 2413

This is an accepted solution.

Hi @FashionDose 

Check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes"

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "theme. Liquid" file. Find the </body> tag and paste the code below before the tag. 

 

{% if template.name == 'index' %}
<style>
div#homepage_slider-template--15784808513775__16468369609130cea6 {
    top: -70px;
}
.header__logo.logo--image {
    overflow: visible;
    z-index: 100;
}
</style>
{% endif %}

 

And Save. 

Result:

Made4uoRibe_0-1726149397758.png

Note: This only visible on the homepage. Not in all other page. 

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Made4uo-Ribe
Shopify Partner
8221 1973 2413

This is an accepted solution.

Check this one for th mobile. 

Please, Insert this one before this code. 

Made4uoRibe_0-1726153976542.png

The Outcome is like this or replace with this. 

 

 

{% if template.name == 'index' %}
<style>
div#homepage_slider-template--15784808513775__16468369609130cea6 {
    top: -70px;
}
.header__logo.logo--image {
    overflow: visible;
    z-index: 100;
}
@media only screen and (max-width: 798px) {
#header a.mobile_logo img {
        max-height: 120px;
    }
#header .top-bar a.mobile_logo {
    margin-top: 40px;
}
#header .top-bar {
    padding: 20px 0;
}
}
</style>
{% endif %}

 

And Save. 

Result:

Made4uoRibe_1-1726154027663.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Replies 8 (8)

BSS-TekLabs
Shopify Partner
2350 701 826

Hello @FashionDose 
Our team is ready to help you.
Please share your website URL so that we can check and assist you.

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


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
FashionDose
Tourist
9 0 6
BSS-TekLabs
Shopify Partner
2350 701 826

- Here is the solution for you @FashionDose 
- Please follow these steps:

z5686811214059_e66de1953f1db631f9134af5cdb796ad.jpg

- Then find the theme.liquid file.
- Then add the following code at the before tag </head> and press 'Save' to save it.

<style>
@media only screen and (max-width: 600px) {
#shopify-section-header img.primary_logo.ls-is-cached.lazyloaded {
    width: 205px !important;
    position: absolute !important;
    top: -47px !important;
    z-index: 9 !important;
}
}
</style>

- Here is the result you will achieve:

BSSTekLabs_0-1726150709259.png

 

- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.

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


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


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

DaveedValencia
Shopify Partner
26 5 5

Can you share a link to your store?

Made4uo-Ribe
Shopify Partner
8221 1973 2413

This is an accepted solution.

Hi @FashionDose 

Check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes"

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "theme. Liquid" file. Find the </body> tag and paste the code below before the tag. 

 

{% if template.name == 'index' %}
<style>
div#homepage_slider-template--15784808513775__16468369609130cea6 {
    top: -70px;
}
.header__logo.logo--image {
    overflow: visible;
    z-index: 100;
}
</style>
{% endif %}

 

And Save. 

Result:

Made4uoRibe_0-1726149397758.png

Note: This only visible on the homepage. Not in all other page. 

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
FashionDose
Tourist
9 0 6

Thank you!

FashionDose
Tourist
9 0 6

Just one more question 😀 - How do I do the same on the mobile version?

Made4uo-Ribe
Shopify Partner
8221 1973 2413

This is an accepted solution.

Check this one for th mobile. 

Please, Insert this one before this code. 

Made4uoRibe_0-1726153976542.png

The Outcome is like this or replace with this. 

 

 

{% if template.name == 'index' %}
<style>
div#homepage_slider-template--15784808513775__16468369609130cea6 {
    top: -70px;
}
.header__logo.logo--image {
    overflow: visible;
    z-index: 100;
}
@media only screen and (max-width: 798px) {
#header a.mobile_logo img {
        max-height: 120px;
    }
#header .top-bar a.mobile_logo {
    margin-top: 40px;
}
#header .top-bar {
    padding: 20px 0;
}
}
</style>
{% endif %}

 

And Save. 

Result:

Made4uoRibe_1-1726154027663.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.