Archived topic
remove white line after list option ( and )
2 replies · Started by Michiel on February 1, 2016
Hi Tom,
I am trying to get rid of the white line after the "list" option. In HTML it starts with:
- ....
- .....
- ....
</lu>
After </lu> the theme automatically adds a white line and a margin or padding, that's not very clear to me.
I tried to remove the padding or margin, but that seem to control each
line.
Is there a HTML or CSS command to get rid of the white line at the end of the list (apparently after the </lu>) and change it to a adjustable padding or margin?
Thx
Michiel
(sorry the text had some HTML commands and it was transformed.... so it's about:
(lu)
(li) ..... (/li)
(li).......(/li)
(/lu)
After </lu> the theme automatically adds a white line and a margin or padding, that’s not very clear to me.
I tried to remove the padding or margin, but that seem to control each
(li)....(/li)
Is there a HTML or CSS command to get rid of the white line at the end of the list (apparently after the </lu>) and change it to a adjustable padding or margin?
Thx
Michiel
Hi there,
There shouldn't be any white line, but there is margin:
ul {
margin-bottom: 20px;
}
Adding CSS: https://generatepress.com/knowledgebase/adding-css/
Let me know if that helps or not :)
