隐藏类别 div 块,从响应式布局展开幻灯片 100%
Hide categories div block, Expand slideshow 100% from responsive layout
我正在使用 http://themeglobal.com/opencart/kingstore/doc/#!/layout 模板
我想在菜单下方隐藏类别块并将幻灯片和两个横幅展开到 100%,(幻灯片显示全部可用 space 并且横幅保持原来的大小)。
我不想在以前存在的类别中使用白色 space。
我评论这一行 class="col-sm-<?php echo $grid_center; ?>"
尝试玩 css class 固定在 12,我还有白色 space 填充。
如何在没有类别的情况下让幻灯片放映全角? ( themeglobal.com/opencart/kingstore/doc/#!/layout ) 并保持响应。
<?php //$grid_center = 12; if( count($headerleft) ) { $grid_center = 9; } ?>
<?php $grid_center = 11; ?>
<div class="col-sm-<?php echo $grid_center; ?>">
<div class="row">
<?php
$grid_header_top = 12;
$grid_content_right = 3;
$header_right = $modules_old_opencart->getModules('header_right');
if( count($header_right) ) {
if($grid_center == 9) {
$grid_header_top = 8;
$grid_content_right = 4;
} else {
$grid_header_top = 9;
$grid_content_right = 3;
}
}
?>
原文如下:Demo Kingstore lite
尝试从管理面板 > 设计 > 布局 > 您的布局名称(主页)删除类别模块(位置 - header 左侧)。
如果可能的话,从 catalog/view/theme/applied_theme_name/template/common/home.tpl 文件中添加更多代码
编辑:通过仅从布局中删除类别模块(在版本 2.1.x 上测试)对我有用。
找到以下代码:
<?php $grid_center = 12; if( count($headerleft) ) { $grid_center = 9; } ?>
<div class="col-sm-<?php echo $grid_center; ?>">
<div class="row">
<?php
$grid_header_top = 12;
$grid_content_right = 3;
$header_right = $modules->getModules('header_right');
if( count($header_right) ) {
if($grid_center == 9) {
$grid_header_top = 8;
$grid_content_right = 4;
} else {
$grid_header_top = 9;
$grid_content_right = 3;
}
}
?>
您似乎更改了第一行,请还原这些更改并尝试。
希望对您有所帮助。
我正在使用 http://themeglobal.com/opencart/kingstore/doc/#!/layout 模板
我想在菜单下方隐藏类别块并将幻灯片和两个横幅展开到 100%,(幻灯片显示全部可用 space 并且横幅保持原来的大小)。
我不想在以前存在的类别中使用白色 space。
我评论这一行 class="col-sm-<?php echo $grid_center; ?>"
尝试玩 css class 固定在 12,我还有白色 space 填充。
如何在没有类别的情况下让幻灯片放映全角? ( themeglobal.com/opencart/kingstore/doc/#!/layout ) 并保持响应。
<?php //$grid_center = 12; if( count($headerleft) ) { $grid_center = 9; } ?>
<?php $grid_center = 11; ?>
<div class="col-sm-<?php echo $grid_center; ?>">
<div class="row">
<?php
$grid_header_top = 12;
$grid_content_right = 3;
$header_right = $modules_old_opencart->getModules('header_right');
if( count($header_right) ) {
if($grid_center == 9) {
$grid_header_top = 8;
$grid_content_right = 4;
} else {
$grid_header_top = 9;
$grid_content_right = 3;
}
}
?>
原文如下:Demo Kingstore lite
尝试从管理面板 > 设计 > 布局 > 您的布局名称(主页)删除类别模块(位置 - header 左侧)。
如果可能的话,从 catalog/view/theme/applied_theme_name/template/common/home.tpl 文件中添加更多代码
编辑:通过仅从布局中删除类别模块(在版本 2.1.x 上测试)对我有用。 找到以下代码:
<?php $grid_center = 12; if( count($headerleft) ) { $grid_center = 9; } ?>
<div class="col-sm-<?php echo $grid_center; ?>">
<div class="row">
<?php
$grid_header_top = 12;
$grid_content_right = 3;
$header_right = $modules->getModules('header_right');
if( count($header_right) ) {
if($grid_center == 9) {
$grid_header_top = 8;
$grid_content_right = 4;
} else {
$grid_header_top = 9;
$grid_content_right = 3;
}
}
?>
您似乎更改了第一行,请还原这些更改并尝试。
希望对您有所帮助。