Logo position

Solved

Logo position

marycrichton123
Explorer
53 0 10

Hey, 

 

I am using a whisper theme. This is my password page:

 

https://mishmash.world/password

 

I want to move my logo, to a new position: Remove from the header and put it above the footer - see attached. 

 

Screenshot 2024-11-11 at 16.42.54.pngMMLogo.png

Accepted Solution (1)

Moeed
Shopify Partner
6292 1711 2055

This is an accepted solution.

Hey @marycrichton123 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find password.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (min-width: 768px) {
img.password-logo {
    top: 50rem !important;
    position: relative !important;
}
}
</style>

RESULT:

Moeed_0-1731344350942.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Create high-converting pages - PageFly Page Builder.


View solution in original post

Replies 5 (5)

Moeed
Shopify Partner
6292 1711 2055

This is an accepted solution.

Hey @marycrichton123 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find password.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (min-width: 768px) {
img.password-logo {
    top: 50rem !important;
    position: relative !important;
}
}
</style>

RESULT:

Moeed_0-1731344350942.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Create high-converting pages - PageFly Page Builder.


marycrichton123
Explorer
53 0 10

Thank you so much!  

marycrichton123
Explorer
53 0 10

@Moeed do you know how I hide the countdown timer on desktop? It has hidden on mobile just not desktop: 

 

https://mishmash.world/password

Made4uo-Ribe
Shopify Partner
9029 2160 2664

Hi @marycrichton123 

Try this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

div#shopify-section-main-password-header {
    order: 2;
}

.password main#MainContent {
    order: 1;
}

.password footer {
    order: 3;
}

 

  • And Save.
  • Result:
    Made4uoRibe_0-1731344459721.png

     

 

 Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
marycrichton123
Explorer
53 0 10

That did now work: Screenshot 2024-11-12 at 16.55.57.png