问题描述
我在WordPress网站上通过“ MC4WP:Mailchimp for wordpress ”插件有一个订阅表单。我已经使用自定义CSS编辑了外观,之前没有任何问题。但是现在CSS由于某种原因停止了工作。我编写CSS的目的是使订阅表单的长度与上面的联系表单的长度相同。但是由于某种原因,表单已经恢复了大小,并且编辑CSS并没有做任何事情。除非代码有问题?有人可以帮忙吗?
<style>
.mc4wp-form {
margin: 0 auto !important;
max-width: 990px !important;
text-align: center;
}
/*Media Queries below */
/*FOR DESKTOP */
@media screen and (min-width: 1366px) {
.mc4wp-form {
margin: 0 auto;
text-align: center;
width: 66%; !important;
margin-top: 0;
}
}
/*FOR LAPTOP */
@media screen and (max-width: 1295px) {
.mc4wp-form {
margin: 0 auto;
text-align: center;
width: 65%; !important;
margin-top: 0;
}
}
/*FOR TABLET AND MOBILE */
@media screen and (max-width: 767px) {
.mc4wp-form {
margin: 0 auto;
text-align: center;
width: 100%; !important;
margin-top: 0;
}
}
</style>
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)