My client wants to get rid of the blank line between the first line and the dotted list. ( ul and li)
is this possible ?
Can you tell me how to do that.
Thanks Sasnel
My client wants to get rid of the blank line between the first line and the dotted list. ( ul and li)
is this possible ?
Can you tell me how to do that.
Thanks Sasnel
Hi Sasnel,
Are you referring on the list in the footer?
If yes, then just add this code in your custom.css or Quick CSS:
#footer .widget {
padding: 10px 0 !important;
}
You can adjust the padding value. If your client really wants to have no space at all between them(but I think it doesn't look good), just use this code instead:
#footer .widget {
padding: 0 !important;
}
Hope this helps.
Regards,
Ismael
Hello Ismael,
Thanks for your answer but i refer to the lists i make in my text items.
You can see an exemple here
http://more-result.nl/wordpress-testsite/organisatieontwikkeling
Do you have a code for that too ?
Regards Sasnel
Hi Sasnel,
Try to add this code in your Quick CSS:
p {
margin-bottom: 5px;
}
This will target all p tags. Just adjust the margin value. Hope this helps. :)
Regards,
Ismael
Thank you, it works !
Regards Sasnel
This topic has been closed to new replies.