Tagged: header
if you look at my site, there’s a small but noticeable gap between the top of the screen and the top of the header. any idea how to move it back to the top of the screen? it just started happening today.
Hi Tech!
It looks like it’s an iframe that is related to some google ads. Did you recently install a google ads plugin or add some new script to the theme settings?
Best regards,
Elliott
Yes, I added in the script for Google’s Adwords remarketing service. I added it to the Google analytics code. Is there another location I can add this to the site that’s more preferred?
Hey!
Use the wp_head action hook to add the script. Refer to this link: http://codex.wordpress.org/Plugin_API/Action_Reference/wp_head
Or you can keep the code. Add this on Quick CSS:
html.responsive {
min-width: 0px;
margin-top: -22px;
}
Regards,
Ismael