HTML Import

If you have questions or if you want to share your opinion about Aware IM post your message on this forum
Post Reply
tazzmaxx
Posts: 125
Joined: Tue Sep 02, 2008 2:13 pm

HTML Import

Post by tazzmaxx »

I am frusterated as I have tried every combination I can think of to display a logo in the header of a VP using the import HTML to no avail.

I have a folder on my C drive called "Header". Inside the folder are 2 documents header.html and logo.png

The html doc is just a simple page with a src to the logo

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>Header</title>
</head>
<body>
<img style="width: 273px; height: 63px;" alt="" src="file:///C:/Header/ETS%20Logo.png">
</body>
</html>

When I click on the webpage in the folder and view it via IE it is fine and the logo displays. When I import the page by selecting the "Header" folder it imports into the VP and says "Header.html". When I run the application the header is present but the logo is missing...

I have done this before successfully so I am a little unsure where I have made an error. Any assistance would be greatly appreciated.

Thanks
aware_support
Posts: 7525
Joined: Sun Apr 24, 2005 12:36 am
Contact:

Post by aware_support »

Have you tried looking at the sample applications which have exactly the same logos?

The problem is this line:
<img style="width: 273px; height: 63px;" alt="" src="file:///C:/Header/ETS%20Logo.png">

It should be:
<img style="width: 273px; height: 63px;" alt="" src="Logo.png">
Aware IM Support Team
christopherb
Posts: 304
Joined: Fri Jun 22, 2007 8:26 pm

Post by christopherb »

little side note..... when writing HTML syntax be sure to remove any spaces in your file/image name. This will save headache in future apps.
Cheers,

Christopher
Post Reply