Wordpress侧边栏不符合内容

时间:2014-02-27 10:20:02

标签: php jquery html css wordpress

它让我疯狂,因为我不是代码高手,使用模板'submate'我试图在儿童主题优势上添加右侧边栏

<?php
/**
 * This template displays full width pages with a page title.
 *
 * @package vantage
 * @since vantage 1.0
 * @license GPL 2.0
 * 
 * Template Name: submate
 */
get_header(); ?>

<?php
//get the sidebar
$avia_config['currently_viewing'] = 'page';
if(is_front_page()) { $avia_config['currently_viewing'] = 'frontpage'; }
get_sidebar();
?>
                <div class="breadcrumbs">
    <?php if(function_exists('bcn_display'))
    {
        bcn_display();
    }?>
</div>

    <?php while ( have_posts() ) : the_post(); ?>

        <?php get_template_part( 'content', 'page' ); ?>

    <?php endwhile; // end of the loop. ?>

<?php get_footer(); ?>

它的链接是; http://www.seasonalharvest.co.uk/recipes/february/

非常感谢任何帮助:)

2 个答案:

答案 0 :(得分:0)

试试这个......

<style type="text/css">
article#post-231 {
    float: left;
    width: 65%;
}
</style>

答案 1 :(得分:0)

你的文章的HTML结构非常糟糕。您已将article元素包裹在strong元素中,这没有意义,因为它用于使文本更大胆。

无论如何,您可以将这个小小的片段添加到wp-content/themes/your-theme/style.css

article[class*="post"] { /* only post articles */
    float: left;
    width: 65%;
}

修改

仅限特定页面:

.page-id-231 article[class*="post"] { /* only post articles */
    float: left;
    width: 65%;
}