I'm sure everyone's already aware of this issue (confirmed it's not just me with a friend and this comment - it seems that user pages are loading without relevant CSS, so they end up looking like this
I thought I'd just post here to ensure mk is aware of this, and if he's able to tell us whether a fix is on the way?
Cheers, and I'm absolutely loving Hubski so far :)
Note that this is really only a major problem if you browse without javascript.
Then you have javascript enabled. If you have it disabled, then opening a user's page just sends you to the broken page.It works fine if I click a username to bring up their info-box.
Sorry, I should clarify - I have javascript enabled too, I only experience this when I open a user's page in a new tab/window (as Fox says). So the reason for the lack of styling is completely understandable, but it would be nice if this was fixed because it's something I do alot. To kind-of fix (by forcefully including the dark CSS):
1. Open a user page in a new tab, for example, mk
2. Open your web inspector console (in Chrome Ctrl-Alt-I and then Esc)
3. Paste this: var link = document.createElement('link');link.setAttribute('rel', 'stylesheet');link.type = 'text/css';link.href = 'dark.css-1-10-13';document.head.appendChild(link);