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

最佳答案

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;
}

关于css - 如何降低Wordpress中图像徽标的高度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26734633/

10-13 02:29