我正在尝试使用wordpress在我的网站设计上更新一些东西。我用二十二十二主题。所以,如果有人可以请建议如何进行以下更新:
1-将图片移动到页面标题之前的页面顶部,这样它的大小就会相同,但只是将它放在顶部。
2-将标题调整为更大的字体并增加第二个标题的字体以及“再洗礼派信徒.....”
3-将此副标题“再洗礼派......”的颜色改为蓝色与大标题相同的颜色,并将其加粗。
答案 0 :(得分:2)
1你需要搬家:
<?php if ( get_header_image() ) : ?>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img src="<?php header_image(); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" /></a>
<?php endif; ?>
在<nav>
文件中的header.php
标记上方。
对于#2,您需要将.site-header h1
font-size
增加到更高的数字。
对于#3,您需要将颜色更改为:color: #084b8a;
编辑:
<header id="masthead" class="site-header" role="banner">
<hgroup>
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
</hgroup>
<?php if ( get_header_image() ) : ?>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img src="<?php header_image(); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" /></a>
<?php endif; ?>
<nav id="site-navigation" class="main-navigation" role="navigation">
<h3 class="menu-toggle"><?php _e( 'Menu', 'twentytwelve' ); ?></h3>
<a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentytwelve' ); ?>"><?php _e( 'Skip to content', 'twentytwelve' ); ?></a>
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?>
</nav><!-- #site-navigation -->
</header>
另一个编辑:
<?php if(is_front_page()) :
echo '<img src="">';
endif; ?>