Adjusting Logo Height In Mobile Responsive Mode - Question | JoomShaper

Adjusting Logo Height In Mobile Responsive Mode

D

DigitM

Template 9 months ago

Hello, I'm using the Maxora template. How can I adjust the height of the logo in responsive tablet portrait and mobile portrait mode? Thank you for your help

0
1 Answers
Ziaul Kabir
Ziaul Kabir
Accepted Answer
Support Agent 9 months ago #180372

Hello,

Thanks for reaching out to us. Currently, I see coming soon is running on your site. To adjust the logo height for tablet and mobile in the Maxora template, use media queries in your custom CSS:

@media (max-width: 768px) { / Tablet / .logo-class { height: 60px; } }

@media (max-width: 480px) { / Mobile / .logo-class { height: 50px; } }

Replace.logo-classwith your logo’s CSS class. Test and tweak as needed! Let me know if you need more help.

Check custom css guide: https://www.joomshaper.com/documentation/helix-framework/custom-code-css-js-meta

Best regards!

0