我的网站上有一个图像徽标:quantgreeks.com。我想减少徽标长度的大小。它似乎在顶部占用了大量空间。我想在不改变图像大小的情况下减少它。
答案 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;
}