WordPress

时间:2016-05-16 08:24:13

标签: css wordpress overflow

我想知道是否有机会获得以下网站的徽标,如图所示?

http://vintagemaedchen.de/

enter image description here

很遗憾,我找不到在徽标中添加课程或ID的方法。

谢谢: - )

2 个答案:

答案 0 :(得分:2)

像这样更新你的CSS

#header > .container {
  height: 230px;                  /*  less high than image make it overflow below  */
}
#header {
  margin-bottom: 80px!important;  /*  increase the green elements margin some  */
}

旁注:

有时候使用position: absolute来做这些事情是很诱人的,不要,它很可能会在以后发生问题,通常会带来不必要的因素重叠。

答案 1 :(得分:1)

你可以玩一点定位(见下文:)

#header > .container {
  bottom: -100px;
  position: absolute;
  text-align: center;
  width: 100% !important;
}
header#header {
  padding-bottom: 200px;
}

那会给你这个:this