Commit 0c3cde42 by lmf

Merge branch 'master' of http://47.99.244.21:9999/root/joshine

parents 348709ac 18ed4901
......@@ -231,7 +231,15 @@ class Topmenu extends Template implements IdentityInterface
$html .= '</div>';
$html .= '</div>';
} else {
} else if($childLevel == 0) {
$html .= '<div class="level' . $childLevel . ' ' . $childrenWrapClass . '">';
$html .= '<div class="row">';
$html .= '<ul class="subchildmenu col-sm-12 mega-columns columns4">';
$html .= $this->_getHtmlStyle1($child, $childrenWrapClass, $limit, $colStops);
$html .= '</ul>';
$html .= '</div>';
$html .= '</div>';
} else{
$html .= '<ul class="level' . $childLevel . '">';
$html .= $this->_getHtml($child, $childrenWrapClass, $limit, $colStops);
$html .= '</ul>';
......
......@@ -1960,11 +1960,6 @@ background-color: #000;
// width: 100px !important;
//}
.cart-container {
width: 81%;
margin: 0 auto;
}
.block.review-add.amreview-submit-form{
display: none;
}
......
......@@ -301,7 +301,7 @@ define([
})
.each(function () {
var menu = $(this),
item = menu.prev("a"),
item = menu.parent().parent().prev("a"),
submenuCarat = $("<span>")
.addClass("ui-menu-icon ui-icon " + icon)
.data("ui-menu-submenu-carat", true);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment