更新:好的,我改变了#access ul的边距,但现在当我将鼠标悬停在它上面时看起来像这样:http://imgur.com/NeUzN
也可以更改页面标题之间的间距(抱歉还在学习css!)
我目前正在设计自己的wordpress主题,并想知道如何将文本向上移动一点以使用导航栏进行集中:http://i.imgur.com/BExiy.png
我也在使用自定义字体。这是我的css:
#access {
background: #252525;
display: block;
float: left;
margin: 0 auto;
height: 40px;
}
#access ul {
list-style: none;
margin: -8px -13px -10px -13px;
padding-left: 0;
color:#000;
text-shadow:1px 1px 1px rgba(14,14,14,0.8);
text-transform:uppercase;
font: 24px Giantypo, Arial, Helvetica, sans-serif;
}
#access li {
float: left;
position: relative;
}
#access a {
display: block;
line-height: 2.5em;
padding: 0 1em;
text-decoration: none;
color:#f3f3f3;
}
#access ul ul {
box-shadow: 0 3px 3px rgba(0,0,0,0.2);
-moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
-webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
display: none;
float: left;
position: absolute;
top: 2em;
left: 0;
z-index: 99999;
}
#access ul ul ul {
left: 100%;
top: 0;
}
#access ul ul a {
background: #3e5d8c;
line-height: 1em;
padding: .5em .5em .5em 1em;
width: 10em;
height: auto;
}
#access li:hover > a,
#access ul ul :hover > a {
background: #3e5d8c;
}
#access ul ul a:hover {
background: #3e5d8c;
}
#access ul li:hover > ul {
display: block;
}
}
任何帮助都会很棒!
干杯,
斯科特
答案 0 :(得分:1)
无序列表的上边距必须为负值。例如:
margin: -7px 0 0 0;
答案 1 :(得分:0)
将line-height
设置为等于height
。在#access a
,我相信,但如果没有看到HTML,我无法确定。如果没有看到它的全部,我就无法知道它的高度。