自从我尝试修改我的Osclass网络以来,已经过了几天。
我目前正在使用Bender Black Theme并且已经将我的类别设置为单个单元格,我正在尝试做的是放置"最新项目"我的类别与下面的Repurpose Theme完全相同,因为Black Bender将类别下的最新项目作为默认值
我所做的是改变了我的类别和最新项目css并添加了float:left给他们,或者定位到亲戚......但是没有用。
我也在osclass论坛上搜索过...并找到了这个问题 How to Add Content Above Category list, Bender 根据给出的解决方案,我在第92行的Header.php中添加了一些代码
<div class="clear"></div>
<div class="latest_ads">
<h1><strong><?php _e('Latest Listings', 'bender_black') ; ?></strong></h1>
<?php if( osc_count_latest_items() == 0) { ?>
<div class="clear"></div>
<p class="empty"><?php _e("No Listing", 'bender_black'); ?></p>
<?php } else { ?>
<div class="actions">
<span class="doublebutton <?php echo $buttonClass; ?>">
<a href="<?php echo osc_base_url(true); ?>?sShowAs=list" class="list-button" data-class-toggle="listing-grid" data-destination="#listing-card-list"><span><?php _e('List', 'bender_black'); ?></span></a>
<a href="<?php echo osc_base_url(true); ?>?sShowAs=gallery" class="grid-button" data-class-toggle="listing-grid" data-destination="#listing-card-list"><span><?php _e('Grid', 'bender_black'); ?></span></a>
</span>
</div>
<?php
View::newInstance()->_exportVariableToView("listType", 'latestItems');
View::newInstance()->_exportVariableToView("listClass",$listClass);
osc_current_web_theme_path('loop.php');
?>
<div class="clear"></div>
<?php if( osc_count_latest_items() == osc_max_latest_items() ) { ?>
<p class="see_more_link"><a href="<?php echo osc_search_show_all_url() ; ?>">
<strong><?php _e('See all listings', 'bender_black') ; ?> »</strong></a>
</p>
<?php } ?>
<?php } ?>
</div>
</div><!-- main -->
但最终我的最新项目位于类别之上(就像问题一样),它实际上使最新项目内容出现在所有页面中,
从那以后,我一直在尝试修改我的css和html代码......但是没有运气......
任何建议? :)
答案 0 :(得分:0)
完成O_o
我制作新的CSS - &gt;跟随body.home css的“newcss”就像这样
body.home #newcss {width:600px;float:right;margin:20px 0 0 0;}
然后我使用我之前提供的相同代码,将其放在newcss div中,就像这样
<div class="newcss">
<h1><strong><?php _e('Latest Listings', 'bender_black') ; ?></strong></h1>
<?php if( osc_count_latest_items() == 0) { ?>
<div class="clear"></div>
<p class="empty"><?php _e("No Listing", 'bender_black'); ?></p>
<?php } else { ?>
<div class="actions">
<span class="doublebutton <?php echo $buttonClass; ?>">
<a href="<?php echo osc_base_url(true); ?>
?sShowAs=list" class="list-button" data-class-toggle="listing-grid" data-destination="#listing-card-list">
<span><?php _e('List', 'bender_black'); ?></span></a>
<a href="<?php echo osc_base_url(true); ?>
?sShowAs=gallery" class="grid-button" data-class-toggle="listing-grid" data-destination="#listing-card-list">
<span><?php _e('Grid', 'bender_black'); ?></span></a>
</span>
</div>
<?php
View::newInstance()->_exportVariableToView("listType", 'latestItems');
View::newInstance()->_exportVariableToView("listClass",$listClass);
osc_current_web_theme_path('loop.php');
?>
<div class="clear"></div>
<?php if( osc_count_latest_items() == osc_max_latest_items() ) { ?>
<p class="see_more_link"><a href="<?php echo osc_search_show_all_url() ; ?>">
<strong><?php _e('See all listings', 'bender_black') ; ?> »</strong></a>
</p>
<?php } ?>
<?php } ?>
</div>
我在{Benner >>主题中function bender_black_draw_categories_list(){
之内和绘制类别代码之前对functions.php进行了更改,并将我的Header.php恢复为其原始^ _ ^
这实际上是有效的