Reputation: 3563
have strange situation i just moved my webpage to new hosting. I check everything and it was ok on my local pc. Webpage is working on firefox,chrome,ie without problem. Unfortunetly when moved to hotsting provider and check it for all 3 webbrowser only for firefox the carousel images are not shown - the carousel itself is showing up, i can even switch images which are empty. What can be wrong? On my local pc using firefox its showing up.
Upvotes: 0
Views: 377
Reputation: 587
check if image name contains space or image extension is in upper case. If you have image with ".JPG" extension and you call it by ".jpg" ( Notice change in Case) locally it may work but wont on server.
Upvotes: 1
Reputation: 3563
the problem was that every image i got was as below (look slash):
<img alt="" src="carousel\7.png">
and that was working for IE,chrome but not for fireofx (only local pc firefox)
when i chagned to that form every image:
<img alt="" src="carousel/7.png">
since that its working also firefox on hosting side.
Upvotes: 0