NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: Alberto on May 09, 2015, 03:44:07 AM
-
Hi,
I know it is a bad code problem, then I cut and cut code till I found what is the problem.
If I add a logo at the top of the page using:
<a href="http://www.portfoliofinanciero.com.ar" target="_blank"><img src="images/logo_PF_ARMi.png" id="Image1" alt="" border="0" style="width:118px;height:118px;"></a>
Then the NetWebPage refreshes only once.
If I cut this code it refreshes ok every 11 seconds.
For what it worst, here is the code from the head:
</head>
<body class="nt-body">
<div id="body_div" class="nt-body-div">
<div id="menuwin_div" data-role="header">
<div id="wb_Titulo" style="z-index:0;" align="center">
<a href="http://www.portfoliofinanciero.com.ar" target="_blank"><img src="images/logo_PF_ARMi.png" id="Image1" alt="" border="0" style="width:118px;height:118px;"></a>
<p><b><font color="#808080" size="5">
PortIt web server - Michelis
</font></b></p>
</div>
next comes a double drop menu
I need to add this logo, then whats wrong with this code?
Thanks
-
>> I need to add this logo, then whats wrong with this code?
It is not xHTML because the <img> tag is not closed. try;
<a href="http://www.portfoliofinanciero.com.ar" target="_blank">
<img src="images/logo_PF_ARMi.png" id="Image1" alt="" border="0" style="width:118px;height:118px;" />
</a>