我正在使用主题Banshee(http://adriangraphics.com/truturf/)并且无法弄清楚如何在导航上方放置标题图片(如http://globalsynturf.com/上所示)。我想在我的WordPress网站导航上方找到我的徽标,电话号码等。我假设我必须更改标头PHP,但不确定如何。
答案 0 :(得分:0)
在你的header.php中找到:
<div class="row">
然后在这个发现里面:
<div class="3">
<div id="logo">
取整个div的内容,然后剪掉它。
然后在<div class="row">
上方,进行以下操作:
<div class="row">
<div class="span12">
<div id="logo">
//rest of the logo code
</div>
</div>
</div>