Reputation: 34188
this is our company web site and when we visit few pages in Chrome then a glitch is coming.i am not being able to understand how to fix it. this is bit css related issue i guess.
here is our page link http://www.bba-reman.com/pl/enquiry-pl.aspx please visit this page with chrome and then at the upper top side you will notice a small icon like things is coming. please help me how to fix it for chrome.
here also i am going to upload a picture of that glitch
thanks
Upvotes: 0
Views: 51
Reputation: 20834
Change the image url from:
http://www.bba-reman.com/pl/images/knowledgebase-header-image1dyna.jpg
http://www.bba-reman.com/pl/images/knowledgebase-header-image2dyna.jpg
http://www.bba-reman.com/pl/images/knowledgebase-header-image3dyna.jpg
to:
http://www.bba-reman.com/images/knowledgebase-header-image1dyna.jpg
http://www.bba-reman.com/images/knowledgebase-header-image2dyna.jpg
http://www.bba-reman.com/images/knowledgebase-header-image3dyna.jpg
Upvotes: 1
Reputation: 125610
Problem is here:
<div class="knowledgebaseCarouselwrapper">
<img src="images/knowledgebase-header-image2dyna.jpg" style="display: block;">
<img src="images/knowledgebase-header-image3dyna.jpg" style="display: none;">
<img src="images/knowledgebase-header-image1dyna.jpg" style="display: none;">
</div>
There is no image on http://www.bba-reman.com/pl/images/knowledgebase-header-image3dyna.jpg
.
Change it to:
<div class="knowledgebaseCarouselwrapper">
<img src="../images/knowledgebase-header-image2dyna.jpg" style="display: block;">
<img src="../images/knowledgebase-header-image3dyna.jpg" style="display: none;">
<img src="../images/knowledgebase-header-image1dyna.jpg" style="display: none;">
</div>
It will point to http://www.bba-reman.com/images/knowledgebase-header-image3dyna.jpg
, which is where image is actually available.
Upvotes: 0