Hi!
I wonder if someone can help me with this question.
How can I increase and decrease the space in a list?
Example:
- kjlkjkljkljlk
- jkjlkjkljkl
How can I adjust this space when </br> makes it too big?
Thanks in advance for your help!
Peter
Hi!
I wonder if someone can help me with this question.
How can I increase and decrease the space in a list?
Example:
How can I adjust this space when </br> makes it too big?
Thanks in advance for your help!
Peter
This is a CSS issue. Go into your theme's stylesheet (style.css) and add margins between your list items.
Thanks, but I don't find this in the CSS.
Can you please help me to find this?
CSS:
[CSS code moderated - please post a link to your site]
Best regards,
Peter
A good place to get started learning css. I don't know where you're having issues with list items on your site. List items usually look like this:
<li>List Item Text</li>
If you target li {margin-bottom:20px;} it will affect all list items site wide. You may have to narrow in on it by finding what div or class it is associated with and target it like this: #divid li or .class li.
Good luck.
You must log in to post.