Wordpress:如何让响应式标题更高?

时间:2016-11-02 13:51:17

标签: php css wordpress

enter image description here

我需要将高度设为更大,以使徽标更加醒目。这是一个CSS问题吗?如果是这样,我在哪里可以在Wordpress中找到它?

1 个答案:

答案 0 :(得分:0)

我看到您的徽标上有一个内嵌样式, max-width:161px; 你可以将它提高到260px,外观看起来仍然很好.. 更改导航栏的高度不会改变徽标本身的外观。

所以要么你再次内联并相应改变:

<img alt="Resuscitation Academy" src="...ra_logo_large2.png" style="max-width: 260px;">

或者您更新styles.css以反映此

.logo .img{
    max-width:260px;
}

也许您还可以重新排列徽标,以更好地适应可用空间。 (该徽标中的大量文字)