Hi,
For a long time there is a bug in the Helix Ultimate template 2.1.1 and previous versions.
At [Basic] > [Logo] you can set the 'Logo Height (Mobile)'. For example '50px".
At [Basic] > [Header] you can set the 'Minimal Layout' header and give the 'Header Height (Mobile)' for example a height of '70px'.
In the frontend the site doesn't get the height from 'Header Height (Mobile)' but from 'Header Height (Tablet)' (So this is the problem!!!).
It has already been mentioned in several forum posts.
For example:
https://www.joomshaper.com/forum/question/25853
https://www.joomshaper.com/forum/question/25230
I solve it with additional CSS but that should not be needed because there is a setting (which does not work) in the Helix Ultimate template.
The additional CSS I use is:
@media all and (max-width: 575px) {
#sp-header .logo {
height:70px;
}
}
@media all and (max-width: 575px) {
#offcanvas-toggler {
height:70px;
line-height:70px;
}
}
It's a very annoying bug.
Can this be resolved please?
Jeroen