Website broken after change of image on Dreamweaver CS4

63 Views Asked by At

My website was fine until I changed an image in the template on Dreamweaver CS4 (I know it's old) and all of a sudden, none of the links work and no images are showing.

All the links on the code are showing as img src="../New Folder/images/Gelec Header2.jpg" and on chrome it says not allowed to load local source.

The website is www.gelec.co.uk for your reference.

2

There are 2 best solutions below

0
Elyor On

Change your CSS, JS and image URLS. Replace all file:// to http://www.gelec.co.uk

Example:

<link href="file:///New Folder/index.css" rel="stylesheet" type="text/css" />

to

<link href="http://www.gelec.co.uk/New Folder/index.css" rel="stylesheet" type="text/css" />
6
ARJUN On

You just need to remove ../ from the img URL if you hosting on the web server.

img src="New Folder/images/Gelec Header2.jpg"