HTML Site Help!

FIREBOSS

Supreme Member
Joined
Aug 21, 2014
Messages
1,337
Reaction score
461
I made test site on some free hosting (domain.coolpage.biz) for my client.When he ok I moved to files to namecheap hosting with Local domain (testdomain.lk).I moved same files and same images.But Images not working on new domain.

capture051.jpg


Please help !
 
Most likely it's because you didn't change the URLs in your HTML file. If you showed your source code, one could say for sure. Protip: Use relative URLs.
 
Most likely it's because you didn't change the URLs in your HTML file. If you showed your source code, one could say for sure. Protip: Use relative URLs.

How can i do it?Any tips?
 
In every HTML-File, basically. I don't know your file structure.
 
You probably have it like this:

Code:
(in index.html)

<html>

<body>

<img src="http://[COLOR=#000000]domain.coolpage.biz/[/COLOR]name_of_pic.jpg">

</body>

</html>

so you should just change it to this

Code:
(in index.html)

<html>

<body>

<img src="http://[COLOR=#000000]testdomain.lk[/COLOR][COLOR=#000000]/[/COLOR]name_of_pic.jpg">

</body>

</html>

:)
 
You probably have it like this:

Code:
(in index.html)

<html>

<body>

<img src="http://[COLOR=#000000]domain.coolpage.biz/[/COLOR]name_of_pic.jpg">

</body>

</html>

so you should just change it to this

Code:
(in index.html)

<html>

<body>

<img src="http://[COLOR=#000000]testdomain.lk[/COLOR][COLOR=#000000]/[/COLOR]name_of_pic.jpg">

</body>

</html>

:)


But it's Looks fine in domain hosting too


Code:
<div class="container_12" id="header-up"><div class="grid_12">
<div id="logo-wrapper"><a href="index.html" title="Site Name"><img alt="Site Name" src="/newdomain.lk/logo.png" /></a></div>
 
Hmm...are you sure that you have the pictures in the same folder as the index.html? And not a /images folder or something?
 
Remove the leading slash in your URL or add the complete scheme/protocol.
 
Not really sure why you posted this in the make money forum but brush up on your HTML and you'll be fine.

Code:
http://www.w3schools.com/html/

&

Code:
http://htmldog.com/guides/html/beginner/
 
Back
Top