【发布时间】:2013-12-13 16:15:11
【问题描述】:
我想用左侧边栏的菜单制作一个 Bootstrap 主题。问题是我无法修复侧边栏菜单后的内容。截图如下:
.
内容被放置在一行中,在 4 个 span3 div 中。如何使此内容直接移动到侧边栏导航旁边?
<?php
if ( !defined('ABSPATH')) exit;
get_header();
?>
<?php if(is_front_page()): ?>
<div class="row wpeden-bs-services">
<?php for($i=1;$i<=4;$i++){ ?>
<div class="span3">
<?php $tpid = (int)bleed_get_theme_opts('home_featured_page_'.$i); $intropage=get_page($tpid); $introcontent = strip_tags(strip_shortcodes($intropage->post_content),"p,br"); if (preg_match('/^.{1,80}\b/s', $introcontent, $match)) $introcontent = $match[0]; else $introcontent = substr($introcontent,0,80); ?>
<div class="about well">
<a href="<?php echo get_permalink($intropage->ID); ?>"><?php bleed_thumb($intropage,array(500,300), array('class'=>'img')); ?></a>
<div class="entry-content">
<h2><?php echo $intropage->post_title; ?></h2>
<p><?php echo $introcontent; ?></p>
</div>
<a href="<?php echo get_permalink($intropage->ID); ?>" class="btn <?php echo bleed_get_theme_opts('button_style','btn-info'); ?> btn-block">View details</a>
</div>
</div>
<?php } ?>
<!-- /.span4 -->
<?php get_template_part('homepage','category'); ?>
<div class="clear"></div>
<div>
</div>
</div><!-- /.span4 -->
<?php endif; ?>
<?php get_footer(); ?>
【问题讨论】:
-
这是问题的截图。感谢您的帮助! i.stack.imgur.com/Xu7PX.png
-
你能做一个 jsfiddle.net 例子并发布链接吗?您需要排除 PHP 调用。查看页面的来源并从那里发布标记
-
jsfiddle.net/EWP32/6 我试着做点什么,不知道对不对。
标签: html css wordpress twitter-bootstrap