site banner

Friday Fun Thread for January 20, 2023

Be advised: this thread is not for serious in-depth discussion of weighty topics (we have a link for that), this thread is not for anything Culture War related. This thread is for Fun. You got jokes? Share 'em. You got silly questions? Ask 'em.

1
Jump in the discussion.

No email address required.

Not sure what you mean? Is that on my screenshot, or happens to you when you use my css? Can you post a pic showing what you mean?

These lines separating the top-level comments in the default "TheMotte" theme are not visible with "reddit". With my minimal knowledge of CSS and some experimentation, I have determined that this fixes the problem:


.comment-section > .comment ~ .comment {

	border-top: 1px solid grey;

}

Oh, that's custom css as well:

This snippet appears to create another bar slightly to the right of the bar seen in "TheMotte". With "reddit", only the new bar is visible. Personally, I prefer the original bar on the left. This makes the original bar visible instead:


.comment .comment-collapse-bar {

	border-right: 2px solid grey;

}

So I ended up not using your original snippet, but it helped me make my own custom CSS. Since, as I said, my knowledge of CSS is minimal, I didn't even know where to start before this. Thanks!