如何降低wordpress中图像标识的高度

时间:2014-11-04 12:00:39

标签: css wordpress

我的网站上有一个图像徽标:quantgreeks.com。我想减少徽标长度的大小。它似乎在顶部占用了大量空间。我想在不改变图像大小的情况下减少它。

1 个答案:

答案 0 :(得分:1)

padding-bottom: 45px; padding-top: 45px;删除/减少header#masthead hgroup可以解决该问题。 那就是:

header#masthead hgroup {
    position: relative;
    zoom: 1;
}

header#masthead hgroup {
    position: relative;
    padding-bottom: 15px; Example value
    padding-top: 15px; Example value
    zoom: 1;
}