xzone, your code shouldn't work.
Notice changes in PHP? (lol)
Nobody can see the PHP changes expect the actual website owner.
And why would CSS changes matter, do you know what you're talking about?
As for the fix, there was a code error aswell. (instead of actually getting the votes line, it was getting the next one)
Change this:
String votesLine = in.readLine();
To this:
String votesLine = inputLine;
And your votes line should be like that:
votes = Integer.valueOf(votesLine.split(">")[3].replace("</div", ""));