我的徽标在手机上没有响应。
下面的代码。Wordpress主题: xclean。
有谁能帮帮忙吗?
谢谢。
/*=============================================
= Mobail Menu Style =
=============================================*/
.header-search {
right: 0;
}
.header-search .searchform input[type="text"] {
width: 160px !important;
}
.header-search .searchform input[type="submit"] {
width: 35px !important;
}
.header .site-logo a {
display: block;
text-align: center;
}
.header .site-logo .slideItWrapper {
display: inline-block;
}
.header-cart:hover .dropdown {
visibility: hidden;
opacity: 0;
}
.header-cart .dropdown {
display: none;
}发布于 2017-12-17 17:51:47
使用相对度量单位:
.header .site-logo a {
width: 10vw;
}https://stackoverflow.com/questions/47853931
复制相似问题