当您向下滚动页面时,我正在使用的主题会缩小菜单和徽标,同时它会保持固定状态。我无法弄清楚如何阻止徽标变小,我希望它能保持相同的尺寸。
我认为这是相关的代码:
<a class="logo" style="">
<img class="sd-res logo-normal" width="208" height="82" alt="" src="/wp-content/uploads/2016/01/logo-new1.png" style="max-height: 49.7px;">
答案 0 :(得分:0)
添加以下css代码行:
.header.stuck .logo img {
max-height: 100% !important;
}
每次滚动窗口时,图像的max-height
都会被覆盖,因此您需要添加!important
前缀。