我使用WordPress开发了一个网站,它在Firefox和Chrome中运行良好但是Internet Explorer存在问题。在主页上,应该在导航栏底部居中的第一个图像未显示。相反,有一个X和很多空白。
以下是主页的HTML示例:
<!DOCTYPE html>
<html>
<style>
#logo {
display: none;
}
div img {
display: inline;
}
div footer-area {
display: none;
}
</style>
<head>
<img style="margin: -76px auto -55px auto; width: 100%; max-width: 450px;" src="http://localhost/wp/wp-content/uploads/2017/09/logo.png" alt="" width="1800" height="903" class="aligncenter size-full wp-image-461" />
</head>
<body>
<div>[smartslider3 slider=4]</div>
以下是网站上的链接:http://www.albertonesso.it
我该怎么做才能解决它?
答案 0 :(得分:2)
图片的src指向您的localhost,而不是您的网站地址。将其更改为albertonesso.it
http://localhost/wp/wp-content/uploads/2017/09/logo.png
到
http://www.albertonesso.it/wp-content/uploads/2017/09/logo.png