当它应该是内联时,在标题之上的Wordpress身体

时间:2016-08-03 23:53:57

标签: php html css wordpress position

这是一个codepen,可以查看我编写并运行的代码。

当我在我的wordpress主题中编写类似的代码时,我的身体出现在标题上方。如何将标题放在标题旁边?

[BONUS]最好的方法/如何将标题的右边缘和屏幕右边的居体对齐。

非常感谢任何建议,我提前感谢你。

[编辑]:我更改了我的wordpress网站的代码,因为在我使用css定位body之前,就像我在我的codepen中所做的那样,但我创建了一个带有类.site的div,并将其作为正文。这是一个临时修复,但它按预期工作。我怎样才能更好地实现这种影响,以便我可以集成视觉插件构建器,如海狸构建器?

HTML:

<div id="header">
  <img src="http://placehold.it/100x100">

    <ul id="nav">
      <li>Item 1</li>
      <li>Item 2</li>
      <li>Item Number 3</li>
      <li>Item #4</li>
    </ul>

</div>
<div id="body">
  <div id="container">Body
  </div>
  </div>

</div>

CSS:

#header,
#body {
  display: inline-block;
}

#header {
    white-space: nowrap;
  width: 15%;
  height: 100%;
  float: left;
  text-align: right;
  position: fixed;
    //border: 1px solid green;
}

#header img {

}

#nav ul {
    list-style: none;
}
#nav  {
  position: absolute;
  bottom: 4%;
  right: 0;
}

#body {
  width: 80%;
  float: right;
    //border: 1px solid yellow;
}

#container {
  height: 10000px;
}

的header.php:

<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>

    <link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url')?>" />
    <meta charset="<?php bloginfo('charset'); ?>">
    <meta name="viewport" content="width=device-width">
    <title><?php bloginfo('name'); ?></title>
        <?php wp_head(); ?>
</head>

<body <?php body_class(); ?>>

    <!-- Site Header -->
<header class="site-header">
  <?php the_custom_logo(); ?>
        <?php wp_nav_menu(array('theme_location','Primary','menu_class'=>'main-navigation')); ?>
</header>
    <!-- /Site Header -->

<!-- Site Content -->

1 个答案:

答案 0 :(得分:0)

部分问题是我的functions.php中有一个php错误。此外,我将网站内容的位置更改为绝对,并将网站导航更改为固定。然后我设置侧边栏导航和网站内容的宽度。我还在我的标题中添加了一个内容循环来创建内容区域。站点导航和内容都以内联块显示。

现在一切似乎都在起作用。