Google AdWords: remove iframe added by tracking conversion code
google-ads-api
Solution
There's an easy fix that doesn't affect the functionality of the code snippet. I've done this with no adverse effects. Just place the script within a hidden div like below and it should do the trick:
<div style="display:none">
<script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
</script>
</div>
Problem
I want to add Google AdWords to my site but the script I'm supposed to add creates an iframe in the dom. This iframe is visible and moves down 13px (its height) all my page. Is there any way to avoid this? If not, can I hide it without affecting Google AdWords functionality? (It is an empty iframe).