XF 1.5 ebay epn js insert to page body template causes gap in site footer?

sross

Active member
Hi, not sure if there is a workaround for this, have added the script to page body and page body js, tried it in different areas of the template without luck. One area did remove the gap but broke my reply boxes.

here is the gap (white):

Screen Shot 2018-09-03 at 11.34.53 AM.webp

If I remove the script insert the ebay ads disappear along with the gap, so I know it's the ebay snippet doing it.

Any ideas? Thanks
 
More then likely ebay has a small dot in there to track page hits and track traffic.

if you could post up the code I could look at it and see if you can remove it.
 
Possible,

You could put it in a div

Like

Code:
.ads {
Width:100%;
background:#000;
}


Code:
<div class="ads"> EBAY CODE </div>

Or
Code:
.ads {
Display:none;
}

That will change the background to black to be like the footer area or it will not display it at all but it f it does not display it may mess with the ads.
 
Possible,

You could put it in a div

Like

Code:
.ads {
Width:100%;
background:#000;
}


Code:
<div class="ads"> EBAY CODE </div>

Or
Code:
.ads {
Display:none;
}

That will change the background to black to be like the footer area or it will not display it at all but it f it does not display it may mess with the ads.
Interesting, I'll give it a go. Thanks for all the suggestions!
 
Top Bottom