• Resolved ipconfig

    (@ipconfig)


    Hi,
    Hope everyone are great!

    This is so a beginners question and im about to loose my mind soon.
    When i try to write text on a page it creates a space under paragraph using bulleted list.

    I just want a normal title and bulletlist under, like this:
    Items
    – Test
    – Test

    Items further
    – Test
    – Test

    The result im getting is after publishing:
    Items

    – Test
    – Test

    Items further
    – Test
    – Test

    Prntscreen: Printscreen of the space created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    Please provide a link to a page on your site where we can see this. Thanks.

    Hi @ipconfig,

    I hope you’re having a great day too. Thanks for the screen grab.

    In the most general case, without looking at your code as @sterndata refers to, you can try this custom CSS to remove the extra space under the para and above the unordered list.

    
    p {
      margin-bottom: 0;
    }
    
    ul {
      margin-top: 0;
      padding-left: 1em;
    }
    
    

    Here’s a live view.

    This code would affect all paragraphs and unordered lists. So you would have to make it more specific to meet your needs.

    How to add CSS to WordPress.

    Shout if you have any questions! ??

    • This reply was modified 4 years, 10 months ago by mark l chaves. Reason: Typo
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Paragraph and bulleted list’ is closed to new replies.