XF 2.3 Node and thread margins/padding

twilliams11

New member
Hi all,

Hoping someone can help me out. I’m new here and have been looking high and low in the ACP for a setting but can’t find it…

I’m trying to shrink up these sections so there’s only a couple pixels there. These are nodes, and I’d like to do the same shrinking inside each node for messages. Right now everything is so spread out.

IMG_3895.webp

Thanks in advance!

- Tim
 
Add some custom css to the extra.less template overriding the default node padding. Use inspect element to check which elements you need to reference.

Try putting:

.node-main {
padding: 5px 10px 5px 10px;
}
 
Thank you @Berb, here's the code I got to work based on your recommendation.

.node-main {
padding: 5px 10px 5px 10px;
}
.node-icon {
padding: 5px 10px 5px 10px;
}
.node-extra {
padding: 5px 10px 5px 10px;
}
.node-stats {
padding: 5px 10px 5px 10px;
}
.structItem-cell--icon {
padding: 5px 10px 5px 10px;
}
.structItem-cell--main {
padding: 5px 10px 5px 10px;
}
.structItem-cell--meta {
padding: 5px 10px 5px 10px;
}
.structItem-cell--latest {
padding: 5px 10px 5px 10px;
}
.structItem-cell--iconend {
padding: 5px 10px 5px 10px;
}
 
Back
Top Bottom