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
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&p0&n0.1446608848993245&c1&d24&w1366&h768&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&p0&n0.1446608848993245&c1&d24&w1366&h768&rforum.kozovod.com/" border="0" width="1" height="1">
Thanks @vinothkannans , it worked like a charm.
This topic was automatically closed after 2798 days. New replies are no longer allowed.