@Panda because there is no match for the DNS entry specified. The receiving web server parses the headers looking for a destination hostname to match, and anything the web server is unable to resolve will be sent back to the root.
Adjusting the size of boxes in posts-list class
-
Hi @phenomlab ,
In NodeBB, there are many pages containing a list of posts such as bookmarks, upvoted, etc.
For example:
https://sudonix.com/user/crazycells/upvotedHow can I change the height of the boxes containing the post with CSS? I would like to increase the box size, so a bigger part of the post will show as a preview in those lists…
All those lists contain “posts-list” class…
-
@crazycells It’s not so much the height of the boxes that causes the issue here, but more the CSS class
overflow: hidden;
. You could change that to the below.posts-list .posts-list-item .content { overflow: auto; }
This would then give you something like this
Notice the scrollbar that appears meaning you scan keep the same panel height, but still scroll through the message to be able to read all of it.
If you wanted the panel height to size with the content, you’d need to do this
.posts-list .posts-list-item .content { max-height: none; height: auto; }
Which in turn would result in this
I’d personally take the
overflow: auto;
route as this is easier on the eyes. However, you get a balance of the two by setting a higher value formax-height
, so.posts-list .posts-list-item .content { max-height: 600px; }
This would still require
overflow: auto;
, but by settingmax-height
you are able to increase the height of the panel to something more aligned with your requirements, and still be able to read the entire message without having to open it.The block of HTML being targeted here is below
-
@phenomlab thanks a lot, this combination works best
.posts-list .posts-list-item .content { overflow: auto; max-height: 600px; }
-
undefined crazycells has marked this topic as solved on
Did this solution help you?
-
-
NodeBB upgrade now cant post
Solved Bugs5 -
-
Q&A Plugin Changes NodeBB
Solved Customisation25 -
-
Forum Statistics Box
Solved Customisation5 -
-