@Raphael: Wow so many replies at a time.
1. Mobile Menu:
— Mobile menu shows the current page and if it doesn’t find the current page then it will show the last menu item. As you don’t have Homepage in your menu, it is showing last menu item. So, the solution for this will be to add “Home” menu. For this, you can go to “Appearance => Menus”, click on View all in pages and select “Home” and add to menu. Or you can go to “Appearance => Theme Options => Responsive Design” and check box next to “Enable Secondary & Footer Menu in Mobile Devices”. This will show “Menu” when it doesn’t find the menu item.
2. Check out page Table in Mobile Devices:
— This is WooCommerce plugin issue and I hope they will fix this soon. They are using Table without considering responsive. That is bad. For this, it’s rally hard for us to fix it. You can copy css from https://gist.githubusercontent.com/catchthemes/eec48957fbd3ed724c98/raw/267d558ca44e58d3dce8d616e1b5fd5588f4bc5d/woocommerce.css and add it in “Appearance => Theme Options => Custom CSS” box. When you add in the CSS make sure you change Label content as per your language,
3. Check out page Terms and condition:
— For terms and condition in new line, you can add the following css in “Appearance => Theme Options => Custom CSS” box
#content .woocommerce form .form-row.terms { clear: both; }
4. Bullets in Sidebar:
— To remove it, you can add the following css in “Appearance => Theme Options => Custom CSS” box.
#secondary .widget.widget_links ul { list-style: none; }