How can I adjust the logo size in motion theme 2.0 using CSS code?

How can I adjust the logo size in motion theme 2.0 using CSS code?

markusggg
Tourist
12 0 6

Im using a third party template named motion theme 2.0 and i cant change the size of the logo and its position. How can i put a css code to make it bigger and more to the left?

Replies 7 (7)

Moeed
Shopify Partner
5882 1597 1899

Hey @markusggg 

 

Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.


Best Regards,
Moeed

- Get a quick Shopify quote – Click here!

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


markusggg
Tourist
12 0 6

bautao password and https://1f0305-5.myshopify.com/

Moeed
Shopify Partner
5882 1597 1899

Hey @markusggg 

 

Follow these Steps:

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

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

<style>
.header {
    margin-left: 0 !important;
    max-width: 100%;
    display: flex;
    justify-content: space-around !important;
}
a.header__heading-link.link.link--text.focus-inset span {
    font-size: 35px !important;
}
</style>

RESULT:

Moeed_0-1705346290518.png

 

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

 

Best Regards,
Moeed

- Get a quick Shopify quote – Click here!

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


markusggg
Tourist
12 0 6

thats not the theme website tho

 

Made4uo-Ribe
Shopify Partner
8813 2109 2586

Hi @markusggg 

Please, share the preview of your motion theme that you like to make the changes. 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.

PageFly-Oliver
Shopify Partner
878 190 182

Hi @markusggg ,

 

You can try this code by following these steps:

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

Step 2: Search file theme.liquid

Step 3: Paste the below code at the bottom of the file -> Save

 

<style>
@media(min-width:767px){
header{
max-width:90% !important;
padding:0
}
header .header__heading{
transform: scale(1.3);
}
}
</style>

 

 

Hope my solution works perfectly for you!

Best regards,

Oliver | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

markusggg
Tourist
12 0 6

dont work