User Tools

Site Tools


conversion-faq-en:start

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Last revision Both sides next revision
conversion-faq-en:start [2015/12/10 09:15]
avarga
conversion-faq-en:start [2015/12/10 09:30]
avarga
Line 1: Line 1:
 ====== Frequently recuring issues with easyHTML banners  ====== ====== Frequently recuring issues with easyHTML banners  ======
  
-Here we discuss the most frequently recurring issues, the possible source of the issue, and recommended solutions.+Here we discuss the most frequently recurring issues regarding teh easyHTML banner template, the possible source of the issue, and recommended solutions. The full specification can be accessed here: 
 + 
 +[[http://dev.adverticum.com/creatives:ehtml-en|http://dev.adverticum.com/creatives:ehtml-en]]
  
 ===== No images are visible / The banner is not visible ===== ===== No images are visible / The banner is not visible =====
Line 88: Line 90:
  
 Because the AdServer is unable to modify the files of an easyHTML banner, we have to change the AdServer variables to local (without folders) relative path: Because the AdServer is unable to modify the files of an easyHTML banner, we have to change the AdServer variables to local (without folders) relative path:
 +
 +http://dev.adverticum.com/creatives:ehtml-en#html_example
 +
 +==== Issue: Codes used in wrong order ====
 +
 +Előfordul, hogy a kódok nem a leírás alapján kerülnek be, hanem a ''script'' megelőzi a hivatkozott elemet, tehát a dokumentációhoz képest fordított sorrendbe illesztik a banner kódjába.
 +
 +Sometimes the codes are not inserted int the order specified, rather the ''script'' comes before the referred element, so the code order is swaped compared to the documentation.
 +
 +Example:
 +
 +<code html>
 +<script>
 +    (function(){
 + 
 +        var cT = document.getElementById('clickTAG');
 +        cT.href = goa.clickTAG;
 +        cT.target = goa.clickTARGET;
 +    })();
 +</script>
 +
 +<a id="clickTAG" href="" target="">CT</a>
 +</code>
 +
 +==== Solution ====
 +
 +While the above code referrs to the element with the ID ''clickTAG'', but the element itself is only after this, when the browser starts to execute the code, it will throw an errer, because the referred element is simply not created by then.
 +
 +The solution for this is to use the right order, which can be found on the link beneath:
  
 http://dev.adverticum.com/creatives:ehtml-en#html_example http://dev.adverticum.com/creatives:ehtml-en#html_example
conversion-faq-en/start.txt · Last modified: 2016/10/03 15:43 by dczipperer