我网页顶部的空白区域

时间:2015-03-14 22:05:36

标签: css wordpress twitter-bootstrap

有人能帮帮我吗?我的页面顶部和div容器之间有一些空白区域,我不知道为什么:http://iwokolasinski.com/wtfq/

@ optimus203我可以看到我的HTML在浏览器中查看时搞砸了。但这是我的header.php文件,似乎没问题。我是个新手,我正在尝试创建wordpress + bootstrap主题。我不知道我做错了什么...... :(

 <html lang="en">
      <head>
        <meta charset="utf-8">
        <title><?php wp_title('|',1,'right'); ?> <?php bloginfo('name'); ?></title>
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">

        <!--Styles -->
        <link href="<?php bloginfo('stylesheet_url');?>" rel="stylesheet">
        <link href='http://fonts.googleapis.com/css?family=Lobster|Khula&subset=latin,latin-ext,cyrillic' rel='stylesheet' type='text/css'>
        <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
        <!--[if lt IE 9]>
          <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
        <![endif]-->

        <?php wp_enqueue_script("jquery"); ?>
        <?php wp_head(); ?>
      </head>

      <body>
      <div class="container-fluid kol">

1 个答案:

答案 0 :(得分:0)

我将此添加到<head>部分的末尾并且有效:

<style>
  body {
    margin-top:-25px;
  }
</style>