我从二十四岁开始扩展我的主题。我现在有这个头文件:
<header id="masthead" class="site-header" role="banner">
<div class="header-main">
<img class="site-logo" src="<?php echo bloginfo('stylesheet_directory');?>/images/ic_logo.png" alt="Image" width="32" height="32"/>
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<div class="search-toggle">
<a href="#search-container" class="screen-reader-text" aria-expanded="false" aria-controls="search-container"><?php _e( 'Search', 'twentyfourteen' ); ?></a>
</div>
<nav id="primary-navigation" class="site-navigation primary-navigation" role="navigation">
<button class="menu-toggle"><?php _e( 'Primary Menu', 'twentyfourteen' ); ?></button>
<a class="screen-reader-text skip-link" href="#content"><?php _e( 'Skip to content', 'twentyfourteen' ); ?></a>
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu', 'menu_id' => 'primary-menu' ) ); ?>
</nav>
</div>
<div id="search-container" class="search-box-wrapper hide">
<div class="search-box">
<?php get_search_form(); ?>
</div>
</div>
</header>
徽标图片的CSS类:
.site-logo {
float: left;
}
基本主题CSS样式:
.site-title {
float: left;
font-size: 18px;
font-weight: 700;
line-height: 48px;
margin: 0;
/* Nav-toggle width + search-toggle width - gutter = 86px */
max-width: -webkit-calc(100% - 86px);
max-width: calc(100% - 86px);
}
.site-title a,
.site-title a:hover {
color: #fff;
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
但是标识显示在网站名称上方......
我如何将它对齐成单个字符串?
答案 0 :(得分:2)
您需要了解的CSS属性是display
属性。 img
标记的显示值为inline-block
,因此它具有宽度和高度,并显示在同一行上。但是,h1
代码的显示值为block
。块级元素本质上在它们之前和之后放置一个换行符,使它们显示在它们自己的行上。
您可以通过h1
inline
或inline-block
元素来克服此行为:
h1 { display: inline-block; }
或者使用float
属性来克服此行为。对于一个新人来说,这将是一个更棘手的问题。 W3Schools provide this article,您可能会觉得有用。