我正在研究wordpress主题,我想让我的徽标叠加在我的滑块上。
我用css尝试了几种方法。但似乎它在较小的屏幕上变大了。我应该使用媒体查询,并在较小的屏幕上看不到它?
我的徽标图片的CSS代码。
@media screen and (max-width: 767px) {
.logo img {
display: none !important;
}
}
.header_mid_inner .logo img {
max-height: none !important;
max-width: none !important;
left: 50px !important;
top: 100px !important;
width: 135px !important;
height: 150px !important;
border: 1px solid white !important;
}
答案 0 :(得分:0)
如果我做得对,你想让徽标响应横幅顶部。要实现此目的,您需要使用%值而不是像素的高度和宽度。此外,定位必须为%,因此它将与页面重新缩放。