• Hello!

    I tried to remove the margin-left and add bullets to the list of posts.
    Unfortunately that’s not working for me:

    .category-posts-internal, .category-posts-shortcode ul {
        ...
    }

    Can you help me with this?

    Best regards, Jens

    • This topic was modified 3 years, 6 months ago by jmeyerdo.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Daniel Floeter

    (@kometschuh)

    It’s padding not margin:

    .category-posts-internal {
        padding-left: 0;
    }

    And you can use !important to override the widget CSS and don’t make custom selects not to complicated:

    .category-posts-internal li {
        list-style: disc !important;
    }

    Another tipp can be to set ‘Lines (responsive)’ to ‘3’ for the post title in the ‘Post details’ panel (https://tiptoppress.com/category-posts-widget/documentation-4-9/#Item_Title).
    The first post will show the full post title over 3 lines and not just 2 lines cut with three dots.
    Maybe you like it more if you can read the whole text right away.

Viewing 1 replies (of 1 total)
  • The topic ‘Format unordered list (bullet, margin-left)’ is closed to new replies.