conversion-faq-en:start
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
conversion-faq-en:start [2015/12/10 09:30] – avarga | conversion-faq-en:start [2016/10/03 15:43] (current) – dczipperer | ||
---|---|---|---|
Line 94: | Line 94: | ||
==== Issue: Codes used in wrong order ==== | ==== Issue: Codes used in wrong order ==== | ||
- | |||
- | Előfordul, hogy a kódok nem a leírás alapján kerülnek be, hanem a '' | ||
Sometimes the codes are not inserted int the order specified, rather the '' | Sometimes the codes are not inserted int the order specified, rather the '' | ||
Line 121: | Line 119: | ||
http:// | 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 --> | ||
+ | </ | ||
+ | </a> | ||
+ | <!-- 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: Usage of Gemius specifications ==== | ==== Issue: Usage of Gemius specifications ==== |
conversion-faq-en/start.1449736232.txt.gz · Last modified: 2015/12/10 09:30 by avarga