你好男女生,
我在工作中获得了我的第一个WordPress版本,几乎任何东西都可以自由使用。我选择使用Altitude pro作为主题,将Genesis作为框架。
我喜欢这个主题但是,对于服务页面来说,主题并不是很棒。为了增加趣味,我想为网站上的每个服务页面创建一个自定义标题设计。
这将是页面顶部1000px左右的彩色背景,具有纯色,顶部有一些图案。
由于我的经验不足,我不确定如何做到这一点,我的PHP知识并不是很棒。
有人可以帮忙吗?
谢谢!
答案 0 :(得分:0)
您可以在此处查看普通标头甚至是固定标头。他们解释得很好。 http://www.w3schools.com/css/css_navbar.asp
答案 1 :(得分:0)
这是一个使用菜单制作固定标题的代码。如果您不想修复它,您只需删除" position:fixed;"。
<!DOCTYPE html>
<html>
<head>
<style>
body {margin:0;}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
position: fixed;
top: 0;
width: 100%;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color: #111;
}
.active {
background-color: #4CAF50;
}
</style>
</head>
<body>
<ul>
<li><a class="active" href="#home">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#about">About</a></li>
</ul>
<div style="padding:20px;margin-top:30px;background-color:#1abc9c;height:1500px;">
<h1>Fixed Top Navigation Bar</h1>
<h2>Scroll this page to see the effect</h2>
<h2>The navigation bar will stay at the top of the page while scrolling</h2>
</div>
</body>
</html>