0
我在我的網站上有一個圖片徽標:quantgreeks.com。我想減少標誌長度的大小。它似乎佔據了頂部的很多空間。我想在不改變圖像大小的情況下減少它。如何降低wordpress中的圖片徽標高度
我在我的網站上有一個圖片徽標:quantgreeks.com。我想減少標誌長度的大小。它似乎佔據了頂部的很多空間。我想在不改變圖像大小的情況下減少它。如何降低wordpress中的圖片徽標高度
從header#masthead hgroup
中刪除/減少padding-bottom: 45px; padding-top: 45px;
應解決該問題。 然後,它將是:
header#masthead hgroup {
position: relative;
zoom: 1;
}
或
header#masthead hgroup {
position: relative;
padding-bottom: 15px; Example value
padding-top: 15px; Example value
zoom: 1;
}