Home › Forums › CSS › Need some help with sidebar space › Reply To: Need some help with sidebar space
January 4, 2016 at 12:05 pm
#236401
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…