Change Mobile Logo Size - Helix Ultimate - Question | JoomShaper
🎃 Halloween Sale is Live! Get 35% OFF on all plans. Sale ends soon! Get Offer

Change Mobile Logo Size - Helix Ultimate

M

Marie-Claire

Template 3 years ago

Hi How can i change the size of the logo mobile version on my website? I need it to appear larger. Thanks

0
9 Answers
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #46636

Hi there!

If I may...

Please use an important after the height value. So, it looks like:

@media(max-width:992px) {
     .logo-image-phone {
         height: 70px !important;
     }
 }

Note: Path towards custom CSS: Extensions>Templates>Styles> Click on your current default template name then choose Template Options. Then find custom CSS within the custom code.

Best Regards

0
Ariba
Ariba
Accepted Answer
Support Agent 3 years ago #46616

Hello

Thank you for your query.

Have you set any custom css for your logo image (mobile version)? If you did you can increase the value. Otherwise please add the following css rule in custom css section:

 @media(max-width: 992px) {
     .logo-image-phone {
         height: 70px;
     }
 }

Hope this helps you.

0
M
Marie-Claire
Accepted Answer
3 years ago #46631

Thanks for your help. I have added this to custom code pn template and no change

0
Ariba
Ariba
Accepted Answer
Support Agent 3 years ago #46635

You are welcome.

Could you provide me your administrative access, please? Use the hidden mode to share the log in credentials.

0
JK
Jeffrey Kiefer
Accepted Answer
3 years ago #46656

I was having the same issue and this fixed the issue for me also. It seems the logo height setting affects both the web and mobile logos. Maybe in future updates there could also be a hight setting for the mobile logo. Just a thought.

0
M
Marie-Claire
Accepted Answer
3 years ago #46661

Thanks for your help. The !important; after height value worked! Thanks again

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #46671

Glad to know that:)

You are always welcome @Marie-Claire and @Jeffrey Kiefer.

It would be very kind of you if you can manage some moment to give us feedback here:

https://extensions.joomla.org/extension/sp-page-builder/

Please let me know your name on the review.

Thanks for being with us :)

-Best Regards

Rashida Rahman

0
M
Mat
Accepted Answer
6 months ago #190738

Hi, I got this working with this:

The top one is for the off canvas menu on desktop, the bottom one manages the off canvas menu on mobile...

Mat.

.offcanvas-menu .logo-image,
.offcanvas-menu .logo-image-phone {
  max-height: 36px;
  height: auto;
  width: auto;
}

@media (max-width: 991px) {
  .offcanvas-menu .logo-image,
  .offcanvas-menu .logo-image-phone {
    max-height: 36px;
    height: auto;
    width: auto;
  }
}
0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 6 months ago #190867

Hi Mat,

Thanks for sharing your experience with us.

Have a nice day!

0