Re: Increase logo size on mobile - Studio theme

Solved

Increase logo size on mobile - Studio theme

arg99
New Member
7 0 0

Good morning.

 

Im using Studio theme. I managed to increase the size of the logo in desktop view but not in mobile view. in the mobile view there seems to be a size limit. Could someone help me?

Thanks!!

 

 

Accepted Solution (1)

PageFly-Kate
Shopify Partner
1373 375 427

This is an accepted solution.

Hi @arg99 

This is Kate from PageFly - Landing page builder

Here's how you can increase the size of the logo in the mobile view using CSS:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/base.css->paste below code at the bottom of the file:

@media only screen and (max-width: 767px) {
.header__heading-logo {
width: 120px;
height: auto;
}
}

Note: Replace "120px" with the desired width of the logo in the mobile view.

Hope my answer will help you

 

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


Unlock the secrets to a record-breaking BFCM with PageFly and Canva


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available)


➜ Weekly updated Shopify tutorials on YouTube


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


View solution in original post

Replies 3 (3)

kgbfashionista
Navigator
345 24 51

Hi,

 

I suppose you changed logo size with css, so you just need to find same class defined in @media

 

For example, if for a desktop you changed this:

 

.logo {

width:100px;

}

 

Then for a mobile look for this:

 

@media screen (max-width: 768px){

.logo{

width: 100px;

}

}

 

Something with media in it. It could be just media, media screen or media screen only

And it is usually followed by screen size max or min. Change you logo size in there, proportionally for every screen size.

Feel free to like my post if it was helpful at all

PageFly-Kate
Shopify Partner
1373 375 427

This is an accepted solution.

Hi @arg99 

This is Kate from PageFly - Landing page builder

Here's how you can increase the size of the logo in the mobile view using CSS:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/base.css->paste below code at the bottom of the file:

@media only screen and (max-width: 767px) {
.header__heading-logo {
width: 120px;
height: auto;
}
}

Note: Replace "120px" with the desired width of the logo in the mobile view.

Hope my answer will help you

 

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


Unlock the secrets to a record-breaking BFCM with PageFly and Canva


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available)


➜ Weekly updated Shopify tutorials on YouTube


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


GemPages
Shopify Partner
5625 1262 1283

Hello @arg99 

 

It's GemPages support team and glad to support you today.

I would like to give you a solution to support you.

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

2. Open your theme.liquid theme file.

3. Paste the below code before </body>:

 

<style>
   @media screen and (max-width: 767px){
      .header__heading-logo {
         max-width: 100%;
      }
   }
</style>

 

Hope my solution can work and support you!

Kind & Best regards!

GemPages Support Team.

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center