a thoughtful web.
Good ideas and conversation. No ads, no tracking.   Login or Take a Tour!
comment by YetAnotherAccount
YetAnotherAccount  ·  3910 days ago  ·  link  ·    ·  parent  ·  post: Is there a way to make the top bar non-floating?

A couple other stylistic tweaks I'd do if I knew how:

* Making the popins (hide, save, unstick, last commenter) when you mouse over things appear all the time

* Adding a list maker for comments (Either puts "<num>." or "\*" in front of paragraphs)

* Making the post comment text be the same size as the text in actual comments

* Making the gap in the middle of the notifications area be clickable

* Redirecting back to the previous page if you encounter "unknown or expired link"





reddirecpthoo  ·  3910 days ago  ·  link  ·  

Adding to the list of style tweaks, if you're colorblind, having trouble distinguishing the hubski share/non-share wheel, you might be benefited by this

        img[class*='point'] {
            background-image: url('http://i.imgur.com/CG7Shda.png');
        }
Another tweak I'm using is a personal preference of font as Arial

        * {
            font-family:'arial' !important;
        }
insomniasexx  ·  3910 days ago  ·  link  ·  

    * Making the gap in the middle of the notifications area be clickable

What do you mean by this?

YetAnotherAccount  ·  3910 days ago  ·  link  ·  

Here:

To the right of your username in the top bar there's the circle thingy and then a "x <num>". Both of those when clicked lead to the notifications, but the area in between them doesn't - it isn't clickable.

insomniasexx  ·  3910 days ago  ·  link  ·  

Got it. Add these to the previous and you should be good.

.statssore {

    margin: 0;
    padding: 31 0 0 0;
}

.statsbar {

    margin: 7 0 0 0;
    padding: 10 6 0 7;
}
insomniasexx  ·  3910 days ago  ·  link  ·  

For " Making the popins (hide, save, unstick, last commenter) when you mouse over things appear all the time" and "Making the post comment text be the same size as the text in actual comments"

For chrome:

Install stylebot. Open Hubski. Open stylebot.

At the bottom, click "edit css"

Paste the following and click save.

.savesplit {

    opacity: 1;   
}

.pubtext {

    font-size: 13px;   
}