PDA

View Full Version : List setting Css


Kajouka
02-14-2021, 12:55 AM
So, I have a List in my post with different levels
Layer One
Layer Two
Layer Two
Layer One


And on VB3 (like this form) it looks great with single spacing.

On VB5 it double spaces when I go from Layer one to two, or back and it looks really terrible.

Does anyone know where in the CSS I can fix this to look like it did on VB3?

Seven Skins
02-14-2021, 03:06 PM
Add this to css_additional.css template

.b-post__content .restore ol,
.b-post__content .restore ul,
.b-post__content .restore dl {
margin-left: 0.75em;
}

Kajouka
02-19-2021, 10:25 PM
unfortunately that didn't quite solve it. It just moved the spacing from the left. The space between lines is still having issues

Layer One
[space here]
Layer Two
Layer Two
[space here]
Layer One


It's giving me 'double space' between the layers, where I typed space here.


EDIT

Solved it. this works:

.b-post__content .restore ol,
.b-post__content .restore ul {margin-top: 0px; margin-bottom: 0px},