I have made some change in default theme so, I think it might be useful for someone.
1. I remove Menu-Info top menu. File tastyigniter/main/views/themes/tastyigniter-orange/local.php
<!--div class="row wrap-vertical"> //Remove Menu-Info-Review Top menu
<ul id="nav-tabs" class="nav nav-tabs nav-justified nav-tabs-line nav-menus">
<li class="active"><a href="#local-menus" data-toggle="tab"><?php echo lang('text_tab_menu'); ?></a></li>
<?php if (config_item('allow_reviews') !== '1') { ?>
<li><a href="#local-reviews" data-toggle="tab"><?php echo lang('text_tab_review'); ?></a></li>
<?php } ?>
<li><a href="#local-information" data-toggle="tab"><?php echo lang('text_tab_info'); ?></a></li>
<?php if (!empty($local_gallery)) { ?>
<li><a href="#local-gallery" data-toggle="tab"><?php echo lang('text_tab_gallery'); ?></a></li>
<?php } ?>
</ul>
</div-->
2. Fix gap between menu list and cart File tastyigniter/main/views/themes/tastyigniter-orange/local.php
<div id="page-content">
<div class="container">
<div class="row">
<?php
if (partial_exists('content_right')) {
$class = "col-sm-9 col-md-9";
} else {
$class = "col-sm-12";
}
if (partial_exists('content_left')) {
$menu_class = "col-sm-9 col-md-9";
} else {
$menu_class = ""; //Remove class col-sm-9 fix menu gap
}
?>
3. Fix (+) or add to cart button to not wrap to new line in smaller screen File tastyigniter/main/views/themes/tastyigniter-orange/css/stylesheet.css
.menu-right {
float: right;
text-align: right;
min-width: 25%;
//line-height: 32px;
}
4. Fix Appetizer image show no_photo.png when no image selected. File tastyigniter/main/views/themes/tastyigniter-orange/partials/menu_list.php
<?php if ($categories) {?>
<div id="Container">
<?php foreach ($categories as $category_id => $category) { ?>
<div class="menu-container mix menu-items <?php echo strtolower(str_replace(' ', '-', $category['name'])); ?>">
<div class="menu-category">
<h3><?php echo $category['name']; ?></h3>
<p><?php echo $category['description']; ?></p>
<?php if (!empty($category['image']) AND strpos($category['image'],'no_photo') < 0) { ?>
<img src="<?php echo $category['image']; ?>" alt=""/>
<?php }?>
Before:

After:
To do list:
- Move Cart to Top Menu and change to Basket icon with number notification
- Remove (+) or add to cart and just make whole menu item as link for easier to click