【发布时间】:2013-10-12 21:02:54
【问题描述】:
我几乎在这里完成了我的网站:http://www.divisionforty.com/wall/,我已经到了剩下的最后一部分是让这个内容居中http://www.divisionforty.com/wall/artists/cali-balles/
代码如下:
<?php get_header(); ?>
<div class="row">
<div class="span4">
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<p>
<?php
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<?php the_content(); ?>
</div>
<?php
endwhile;
endif;
?> </p>
</div>
<div class="span8" id="thumbnails">
<?php postimage($size=thumbnail, $qty=-1) ?>
</div>
</div>
<?php get_footer(); ?>
该页面实际上没有任何样式自定义,因此它是基本的引导程序。
希望有人可以帮忙,
丹佛
为了澄清这是我想要的中心:
【问题讨论】:
-
你到底想要什么居中?你能说得具体点吗?
标签: wordpress twitter-bootstrap responsive-design center html