WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2025 Poal.co

1.0K

Hey poalacks,

I'd like you to take notice, that there are some people, who are enjoying longer discussions, which are discouraged by your current CSS.

As an example, you could look at the following thread, where some user tries to (unsuccessfully) argue for being thoughtful towards boomers:

https://poal.co/s/Helicoptarian/133661

The fact, that every few messages require a reload sucks just as much as the fact, that the discussion becomes unreadable after a while, because the <div> becomes too narrow to even display single words in one line.

Hey poalacks, I'd like you to take notice, that there are some people, who are enjoying longer discussions, which are discouraged by your current CSS. As an example, you could look at the following thread, where some user tries to (unsuccessfully) argue for being thoughtful towards boomers: https://poal.co/s/Helicoptarian/133661 The fact, that every few messages require a reload sucks just as much as the fact, that the discussion becomes unreadable after a while, because the <div> becomes too narrow to even display single words in one line.

(post is archived)

[–] 0 pt

The margin to the left of the message-divs is too large. Should be like the margin on the right, which is smaller. It also may be possible to use different CSS classes, depending on how big a thread is.

It should also be possible to open a whole tree, or at least a complete branch of the tree, with one click, or at least until another fork happens. Clicking for every few instances down the tree kinda sucks. With tree I mean the structure under which the messages are organized.

This shouldn't cause too much trouble with the database, if the relevant fields are indexed, and the objects are retrieved in one single operation.

[–] 0 pt

You could probably fix this with a custom sub CSS, which you (or any other user) could then apply globally in your settings. If you give it a try please let me know.

[–] 1 pt (edited )

I've made a few changes to the CSS, so that less space is wasted:

https://poal.co/s/WMDTestSite/135282

Put the following into your CSS, if you want to use this design:

/* CSS here */

.pchild {
  margin-left: 0px;
}

.c-upvote, .c-downvote, .upvote, .downvote {
  width: 12px;
}

.votecomment {
  width: 16px;
}

.commentrow.text-post.no-padding.comment {
  padding: 0.4em 0 0.4em 0.4em;
}

article.comment:nth-child(n) {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 2px solid #333;
  border-right: none;
}

article.comment:first-of-type {
  border-radius: 8px;
}
[–] 0 pt

That is awesome. I will enter 'WMDTestSite into the Global CSS field in my user settings. You should make a post about this so that other users can check it out.

:

https://poal.co/s/WMDTestSite/135282

[–] 1 pt

How/where can I customize the CSS?

[–] 0 pt

Make a sub and then find the 'edit stylesheet' button on the sidebar.