我的wordpress网站上的gmaps有问题。 我之前有过地图的图片,但几天前我开始只拿到没有地图的灰盒子。
你可以看到它here。 我该如何解决这个问题? 相同的主题,相同的插件......但是因为我不再看地图而改变了一些东西。
答案 0 :(得分:0)
问题由http://grand.co.me/wp-content/themes/porto/css/theme_1.css?ver=4.4.1强制执行(第2959行)
img {
max-width: 100%;
/*height: auto;*/
height: 100% !important;/*<--problem*/
width: auto !important;
}
添加此样式以修复它:
.gm-style img {
height: auto !important;
}
除此之外:页面大小为8KB,但加载大约1MB的CSS。 我从未见过加载过这么多CSS的页面