Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Need some help with sidebar space Reply To: Need some help with sidebar space

#236401
Shikkediel
Participant

If you leave out a width altogether, it will default to 100%. Such is the case with a div. So that would be step one – then the actual issue is with the descendant elements of .mini-post, try changing the style to this :

.mini-posts > * {
width: 50%;
box-sizing: border-box;
}

Removing the padding from there…