The carousel’s still in the works, the logo is responsive but you’re right, currently the mobile menu overlaps the logo, I see what you mean.
It really depends if your logo is horizontal – vertical. We could detect that with php, but even after then, gotta know if you want to
a.) limit it to a certain height and hide the rest, so that the whole viewport is not occupied by the logo (1)
b.) display it in full (2)
See this https://s29.postimg.org/add4mdex3/rlg_Untitled_9.jpg
If you want a(1):
a#logo_lg {overflow: hidden}
The logo has a default max-height:6em; you can adjust it accordingly
If you want b(2):
a#logo_lg {
float: none;
height: auto;
max-height: 0;
}
But these will also effect the logo display in full-mode. So it’s really hard to find a solution that works for all, or even a middle ground. Maybe I’ll load two logos one for small one for large views. Let me know if you’ve suggestions