Hi @ccpeurope,
You should use the following CSS for the menu element:
float: left;
And you should make sure to use media queries to apply that style just for mobile:
@media only screen
and (min-device-width: 320px)
and (max-device-width: 480px)
and (-webkit-min-device-pixel-ratio: 2) {
}
Best regards.
Gabriel