答案 0 :(得分:2)
为什么您的<img>
位于文档的<head>
元素内?
在尝试制作WordPress网站之前,您应该考虑更多地了解纯HTML / CSS。
作为证据证明:
<img class="title2" href="http://www.2touchrulz.com" src="/wp-content/themes/adventure/images/title2.png" />
为什么您的<img>
具有href
属性?你需要:
<a href="http://www.2touchrulz.com/"><img .. /></a>
您只需使用纯CSS更改即可修复标题:
img.title2 {
width: 740px;
float: left;
position: relative;
left: 50%;
margin-left: -490px;
}
但是, 真的 不是你应该怎么做。
你应该忘记我刚写的CSS,只需将<img>
移到<div id="center">
内。问题解决了。