0

我的网站是 www.rosstheexplorer.com

根据浏览器的宽度,页面上的插件、H1 和其他元素可能会与自定义标题重叠。我怎样才能防止这种情况发生?我希望页面上的所有其他元素始终位于客户标题下方。

我的自定义标题的代码是

 @media screen and (min-width: 601px) {
 .custom-header { background: url("https://i1.wp.com/www.rosstheexplorer.com/wp-content/uploads/2017/02/Cover-Photo-6-2.jpg") no-repeat; 
        width: 100% ;
            height: 40%;
        background-size: 100%;

position: absolute;
top: 0px;
left: 0px;

    display: block


}
}

我的 header.php 的代码(在我在下面解释的修改之前)是

<?php
/**
 * The Header for our theme.
 *
 * Displays all of the <head> section and everything up till <div id="content">
 *
 * @package Penscratch
 */
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php wp_title( 'A|', true, 'right' ); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">

<?php wp_head(); ?>
</head>

<body <?php body_class(); ?>>
<div id="page" class="hfeed site">
    <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'penscratch' ); ?></a>
    <img class="custom-header" src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="">
<header id="masthead" class="site-header" role="banner">
        <div class="site-branding">
            <?php if ( function_exists( 'jetpack_the_site_logo' ) ) jetpack_the_site_logo(); ?>
            <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
            <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
        </div>

        <nav id="site-navigation" class="main-navigation" role="navigation">
            <button class="menu-toggle"><?php _e( 'Menu', 'penscratch' ); ?></button>
            <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
        </nav><!-- #site-navigation -->
    </header><!-- #masthead -->

    <div id="content" class="site-content">
        <?php if ( get_header_image() ) : ?>
            <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">

            </a>
        <?php endif;  // End header image check. ?>

要将自定义标题放在自己的行中,我尝试使用以下代码

<div class="row">

    <div class="col-sm-12" style="background-color:lavender;"><img class="custom-header" src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt=""></div>

  </div>

这似乎没有效果。

我是否正确安装了 Bootstrap?

我尝试使用以下代码。我将代码添加到 functions.php 文件中。我使用了此处的说明https://www.zenwebthemes.com/blog/how-to-add-bootstrap-to-your-wordpress-theme/

wp_enqueue_style( 'bootstrap_css', get_template_directory_uri() . '/css/bootstrap-3.3.7.css' );


wp_enqueue_script( 'bootstrap_js', get_template_directory_uri() . '/js/bootstrap.min.js' );

我根据 Pratys 的建议添加了下一点我的评论。我使用的是https://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_table_basic&stacked=h上的模拟工具。

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
  <h2>Basic Table</h2>
  <p>The .table class adds basic styling (light padding and only horizontal dividers) to a table:</p>            
  <table class="table">

    <tbody>
      <tr>
        <td><img class="custom-header" src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt=""></td>

      </tr>
      <tr>
        <td>Mary</td>

      </tr>

    </tbody>
  </table>
</div>

</body>
</html>

文本'Mary'当前在哪里,你会放与菜单栏相关的代码吗?

4

2 回答 2

1

在您的原始 CSS 中,您是否尝试添加clear:both;到您的 CSS 中?
https://www.w3schools.com/cssref/pr_class_clear.asp

于 2018-10-31T13:48:03.107 回答
1

我访问了您的网站,当我调整浏览器大小时,它确实与标题和菜单重叠。

我建议您将自定义标题图像和标头标题放在网格控件的 2 行不同的行中。这样,您可以限制行重叠。

或者,您可以尝试在您的网站中实现引导程序,并且您不会处理浏览器的大小调整,因为它会自行处理所有事情。

于 2017-05-30T10:03:52.323 回答