cancel
Showing results for 
Search instead for 
Did you mean: 

How to change header menu position on mobile view?

How to change header menu position on mobile view?

  1. On my mobile the menu and shoppingcart are both on the right side of the header. How can I position the menu on the left and only the shoppingcart on the right?
    IMG_4967.JPG
1 REPLY 1

Re: How to change header menu position on mobile view?

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

Welcome to the Magento Forums. Remember to introduce yourself and read the Magento Forums Guidelines.