Help to remove top space above custom header - need CSS advice

I don’t seem to be able to figure out where this space comes from:

The link is http://forum.kozovod.com/

Any CSS guru around to take a quick look?
Many thanks

The white space is occupied by below img tag.

<img src="http://r.i.ua/s?u200072&amp;p0&amp;n0.1446608848993245&amp;c1&amp;d24&amp;w1366&amp;h768&amp;rforum.kozovod.com/" border="0" width="1" height="1">

You can alternatively set position: fixed; for css style like below. It will fix the issue.

<img style="position: fixed" src="http://r.i.ua/s?u200072&amp;p0&amp;n0.1446608848993245&amp;c1&amp;d24&amp;w1366&amp;h768&amp;rforum.kozovod.com/" border="0" width="1" height="1">
4 Likes

Thanks @vinothkannans , it worked like a charm.

2 Likes