Thread overview
Please tweak the forum CSS with a single change to add spacing to paragraphs
Jan 14, 2023
Gavin Ray
Jan 14, 2023
Gavin Ray
Jan 14, 2023
Ali Çehreli
January 14, 2023

Currently, posts with more than one paragraph become increasingly-unreadable walls of text due to CSS styles that specify 0 margin/padding between them (why?)

With one small change, we can make much easier to read. Below is a before/after:

.post-body p {
    margin: 10px;
}

before-after-margin-change-img

January 14, 2023

Well, this is embarassing!

I think it must be one of my browsers addons, opening in a different browser does not have the same issue.

January 14, 2023
On 1/14/23 08:48, Gavin Ray wrote:
> Well, this is embarassing!
> 
> I think it must be one of my browsers addons, opening in a different browser does not have the same issue.

Yeah, margin-top and margin-bottom are both resolved as 16 at this end in Firefox.

Ali