Google remarketing tag – iframe height issue

In my sites i use this code

iframe[name="google_conversion_frame"] { 
    height: 0 !important;
    width: 0 !important; 
    line-height: 0 !important; 
    font-size: 0 !important;
    margin-top: -13px;
    float: left;
}

Floating the iframe allows you to use negative margin equal to the height of the body inside the iframe.

Leave a Comment