conversion-faq-en:start
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
conversion-faq-en:start [2015/12/07 17:54] – created avarga | conversion-faq-en:start [2016/10/03 15:43] (current) – dczipperer | ||
---|---|---|---|
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 |
+ | |||
+ | [[http:// | ||
===== No images are visible / The banner is not visible ===== | ===== No images are visible / The banner is not visible ===== | ||
Line 7: | Line 9: | ||
==== Issue: Using folders in relative links ==== | ==== Issue: Using folders in relative links ==== | ||
- | In case after upload the images in the banner banner do not show up, is most like due to tehfact, that the banner searches for the resources in sub directories, | + | In case after upload the images in the banner banner do not show up, is most like due to the fact, that the banner searches for the resources in sub directories, |
<code html> | <code html> | ||
Line 31: | Line 33: | ||
==== Solution ==== | ==== Solution ==== | ||
- | Because the AdServer is unable to modify | + | Because the AdServer is unable to modify |
<code html> | <code html> | ||
Line 41: | Line 43: | ||
==== Issue: The usage of two uncompatible code snipets ==== | ==== Issue: The usage of two uncompatible code snipets ==== | ||
- | This issue manifests by opening | + | This issue manifests by opening |
A possible reason is that two suggested code snipets are mixed up - Javascript and HTML. | A possible reason is that two suggested code snipets are mixed up - Javascript and HTML. | ||
Line 61: | Line 63: | ||
Because in the example above '' | Because in the example above '' | ||
- | If we use an '' | + | If we use an '' |
http:// | http:// | ||
Line 67: | Line 69: | ||
===== The banner is not clickable / It redirects to a wrong site ===== | ===== The banner is not clickable / It redirects to a wrong site ===== | ||
- | ==== Issue: | + | ==== Issue: |
- | A goa-helper.js | + | The '' |
==== Solution ==== | ==== Solution ==== | ||
- | A banner elejére, általában a '' | + | The '' |
- | http:// | + | http:// |
- | ==== Issue: AdServer | + | ==== Issue: |
- | Előfordul, hogy egy másik dokumentáció alapján készül el a banner, például a korábbi | + | Sometimes the banner |
<code html> | <code html> | ||
Line 87: | Line 89: | ||
==== Solution ==== | ==== Solution ==== | ||
- | Mivel az easyHTML banner | + | Because the AdServer is unable to modify the files of an easyHTML banner, |
- | http:// | + | http:// |
+ | |||
+ | ==== Issue: Codes used in wrong order ==== | ||
+ | |||
+ | Sometimes the codes are not inserted int the order specified, rather the '' | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code html> | ||
+ | < | ||
+ | (function(){ | ||
+ | |||
+ | var cT = document.getElementById(' | ||
+ | cT.href = goa.clickTAG; | ||
+ | cT.target = goa.clickTARGET; | ||
+ | })(); | ||
+ | </ | ||
+ | |||
+ | <a id=" | ||
+ | </ | ||
+ | |||
+ | ==== Solution ==== | ||
+ | |||
+ | While the above code referrs to the element with the ID '' | ||
+ | |||
+ | The solution for this is to use the right order, which can be found on the link beneath: | ||
+ | |||
+ | http:// | ||
+ | |||
+ | ==== Error: The anchor tag (<a>) responsible for the linking is not containing the banner ==== | ||
+ | |||
+ | For example: | ||
+ | |||
+ | <code html> | ||
+ | <a id=" | ||
+ | <div id=" | ||
+ | <!-- HTML code --> | ||
+ | </ | ||
+ | <!-- Javascript for click handling --> | ||
+ | < | ||
+ | (function(){ | ||
+ | |||
+ | var cT = document.getElementById(' | ||
+ | cT.href = goa.clickTAG; | ||
+ | cT.target = goa.clickTARGET; | ||
+ | })(); | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | ==== HTML solution ==== | ||
+ | The <a> tag defines a hyperlink, which is used to link one page to another, and only the area between the opening < | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code html> | ||
+ | <a id=" | ||
+ | <div id=" | ||
+ | <!-- HTML code --> | ||
+ | </ | ||
+ | </ | ||
+ | <!-- Script for clicks --> | ||
+ | < | ||
+ | (function(){ | ||
+ | |||
+ | var cT = document.getElementById(' | ||
+ | cT.href = goa.clickTAG; | ||
+ | cT.target = goa.clickTARGET; | ||
+ | })(); | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | |||
+ | ==== CSS solution ==== | ||
+ | |||
+ | If we have an anchor tag implemented in our code in one line but we want to make the whole banner clickable, instead of moving the anchor we can use CSS to modify its appearance. We just have to set its width and height attributes to match the width and height of the banner. After that we have to give the anchor tag a high z-index value. It will force the browsers to click it instead of the other parts of the creative. | ||
+ | |||
+ | |||
+ | Example: (Let's assume that our banner' | ||
+ | |||
+ | <code html> | ||
+ | <div id=" | ||
+ | < | ||
+ | <a id=" | ||
+ | <!-- HTML code --> | ||
+ | </ | ||
+ | <!-- Script for clicks --> | ||
+ | < | ||
+ | (function(){ | ||
+ | |||
+ | var cT = document.getElementById(' | ||
+ | cT.href = goa.clickTAG; | ||
+ | cT.target = goa.clickTARGET; | ||
+ | })(); | ||
+ | </ | ||
+ | </ | ||
- | ==== Issue: Gemius | + | ==== Issue: |
- | Találkozhatunk olyan esettel, amikor egy bannert a Gemius | + | In some cases, the banner is created by the Gemius |
<code javascript> | <code javascript> | ||
Line 110: | Line 206: | ||
==== Solution ==== | ==== Solution ==== | ||
- | Mivel a fenti kód hasonlóan működik a '' | + | While this code is similar to what the '' |
<code javascript> | <code javascript> |
conversion-faq-en/start.1449507294.txt.gz · Last modified: 2015/12/07 17:54 by avarga