• Hi! I’ve been trying out the default Twenty Twenty theme for my site (time for a facelift). I would like to have different “recent” widgets in the footer, for different categories. I’ve been trying out different plugins and yours is the one closest to what I want. But I would like to remove the bullet list functionality and have the posts listed with just title and date, just like how Twenty Twenty formats it’s recent posts widget. How it looks like here for instance under “Recent Posts” (not my site, I’m using a completely different theme at the moment and are just playing around with the theme offline):

    https://pauljacobson.me/2020/05/26/rock-nostalgia/

    Is this possible fairly easily (I’m not much of a developer, so we’re talking pretty basic stuff…)? Available in the pro edition of the plugin?

    /Ola

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter dscola

    (@dscola)

    (Oh, and also invert the link underline. In other words have the underline appear on mouseover, just like the theme’s widget.)

    Plugin Author Daniel Floeter

    (@kometschuh)

    In the General tab there are two options ‘Disable the build-in CSS’ and ‘Disable only font styles’.
    If you check the second on just your Theme’s CSS for font styling is used.

    In the Post details tab you can use the Template with that two placeholders:
    %title%

    %date%

    Than in the Post details tab the option ‘Date format’ > PHP styles format and for ‘PHP Style Date format’ > ‘Y-m-d’

    Try that code for the title underlined on mouse hover:

    .cat-post-title {
        text-decoration: none !important;
    }
    .cat-post-title:hover {
        text-decoration: underline !important;
    }

    And can you describe the bullet list functionality in more words or attach us a screenshot here: https://tiptoppress.com/support/

    Thread Starter dscola

    (@dscola)

    Excellent, worked like a charm! Almost there. Two more things if possible. The bullets are gone, but there is padding/margin to the left, but I would like it aligned with the left margin like the heading. Also, there is a divider between each post that I would like to get rid of.

    See this image. Above is how I would like it, below is what I have right now (after your help above):

    https://pasteboard.co/JcaOHRV.png

    Plugin Author Daniel Floeter

    (@kometschuh)

    Some interesting ideas to have a horizontal line between the widget title and the posts:

    .category-posts-internal, .category-posts-shortcode ul {
        margin-left: 0 !important;
    }

    And the divider is just a separating line. With the new Themes it can be much, ok:

    .cat-post-item {
        border-bottom: none !important;
    }
    Thread Starter dscola

    (@dscola)

    Yay! Worked perfectly. I have lots to learn, it seems… ??

    Thank you so much for your help! Much appreciated!

    /Ola

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove bullet?’ is closed to new replies.