使用CSS为我的页面设置样式存在问题

时间:2012-06-07 17:53:49

标签: css

我的网站存档页面存在问题。我不理解它正在做什么,因为.entry-content样式完全按照它在博客页面上的样子设置。然而,当你转向archive page时,它会凝聚而紧张,而且页脚左边甚至有一个间隙。我的类别做同样的事情,但网站上所有其他样式都很好。我正在使用firebug来查看样式,但通过它,但我甚至看不到可能发生的情况,因为.entry-content CSS样式没有出现。

非常感谢任何建议。

2 个答案:

答案 0 :(得分:1)

只需从

中删除height属性即可
.entry-header {
    font-weight: bold;
    height: 50px; /* remove this */
    margin-left: 0;
    text-align: left;
    width: 400px;
}

答案 1 :(得分:1)

在归档页面中有一个名为“date”的类应用于body标签,因此只需删除该类中的padding-left&您的网站页脚将被修复。

.date {
 color: #666;
 position: relative;
 padding-left: 10px;/* Remove This*/
 min-height: 10px;
}

现在,发布日期问题:我可以看到你在标签内部使用了包裹的邮件标题,但是它在归档页面和文件中包含了内部标记。标题显示设置为阻止。因此,只需将标题标记更改为存档页面中的span。以下是您要跨越的代码更改标题。它在所有页面代码中具有良好的主要一致性。

<header class="entry-header">
    <h1 class="title">
      <a href="http://www.averylawoffice.ca/averywordpress/?p=10" title="Permalink to Looking for someone to hire?" rel="bookmark">Looking for someone to hire?</a>
   </h1>
   <div class="entry-meta">Posted on: March 27, 2012 </div><!-- .entry-meta -->
</header>