当页面向下滚动时,如何防止徽标在固定标题中调整大小?

时间:2016-01-19 20:02:12

标签: css wordpress wordpress-plugin wordpress-theming

当您向下滚动页面时,我正在使用的主题会缩小菜单和徽标,同时它会保持固定状态。我无法弄清楚如何阻止徽标变小,我希望它能保持相同的尺寸。

我认为这是相关的代码:

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

http://bit.ly/1ZzgElV

1 个答案:

答案 0 :(得分:0)

添加以下css代码行:

.header.stuck .logo img {
  max-height: 100% !important;
}

每次滚动窗口时,图像的max-height都会被覆盖,因此您需要添加!important前缀。