我正在尝试使用Wordpress上的Twenty Eleven内联一个以网站标题为中心的体育徽章,但是我无法让它工作。你有什么建议吗?
以下是相关代码:
<header id="branding" role="banner">
<hgroup>
<h1 id="site-title">
<img src="http://aberdeenshirecc.org.uk/phpHrX1SaAM.jpg"style="width:84px;height:100px; display:inline; vertical-align:center; img margin-top:200px; ">
<span><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span>
</h1>
很遗憾无法将div添加到子主题中,因此必须在实际的img标记中使用style =。
答案 0 :(得分:1)
..或者如果你真的希望通过img的CSS使用display: block;
和自动保证金来实现。在你的情况下:
<img src="http://aberdeenshirecc.org.uk/phpHrX1SaAM.jpg" style="width:84px; height:100px; display:block; margin: 200px auto 0;">