我需要 wordpress 专家在编辑或创建主题方面的帮助。我一直在尝试模仿 lol.garena.ph,到目前为止我所做的是导航按钮,这里是代码:
<style type="text/css">
body{
background-color:#000
}
Hh.hoverHome {
position: relative;
top: -3px;
padding-bottom: 7px;
background:url(homeHover.png); /* this will raise the element */
}
Hn.hoverNews {
position: relative;
top: -3px;
padding-bottom: 7px;
background:url(newsHover.png);
}
Hg.hoverGuides {
position: relative;
top: -3px;
padding-bottom: 7px;
background:url(guidesHover.png);
}
Hh {
list-style: none;
height: 22px;
width: 79px;
float: left;
display: block;
padding: 5px 10px;
margin-right: 10px;
background:url(home.png);
}
Hn {
list-style: none;
height: 22px;
width: 79px;
float: left;
display: block;
padding: 5px 10px;
margin-right: 10px;
background:url(news.png);
}
Hg {
list-style: none;
height: 22px;
width: 79px;
float: left;
display: block;
padding: 5px 10px;
margin-right: 10px;
background:url(guides.png);
}
</style>
</head>
<body>
<div class="container">
</div>
<Hh onmouseover="this.className='hoverHome';" onmouseout="this.className='';"> </Hh>
<Hn onmouseover="this.className='hoverNews';" onmouseout="this.className='';"></Hn>
<Hg onmouseover="this.className='hoverGuides';" onmouseout="this.className='';"></Hg>
</body>
</html>
我遇到的问题是我不知道把它放在 wordpress 主题的哪里,因为我看到的只是 php 文件。我试图在 211 主题的 style.css 上插入 css 部分,在 content.php 上插入其余部分,但它仍然不起作用。我还是 Wordpress 的新手,所以请帮帮我,谢谢。3