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!