• Resolved jakmal1

    (@jakmal1)


    I noticed when I add a related posts widget to my right sidebar and have it displayed as a list rather than as thumbnails it adds a numbered list and a margin to the left of the list, leading to unnecessary space. I can only remove the numbered list from the automatic feature where the related posts are displayed after the post (not in the sidebar)

    How would I go about removing the list numbers and margin from the sidebar widget?

Viewing 1 replies (of 1 total)
  • Plugin Support Michael Nelson

    (@mnelson4)

    Hi @jakmal1, yes the related widget’s list display uses an ordered list which is slightly indented, although it appears the same in the widget as when automatically added to the post content, from my testing.

    Nevertheless, to make the modification you’re wanting, you’ll need to add a bit of custom CSS to your theme. Something along these lines should do the trick:

    
    .yarpp-related-widget li{
    	list-style:none;
    }
    .yarpp-related-widget ol{
    	margin-left:0;
    }
    

    I really shouldn’t be writing custom code for free support requests, but there it is anyways.

    Does that help? If not, please provide me with the URL of your site where you’re having this trouble.

Viewing 1 replies (of 1 total)
  • The topic ‘How do I remove numbered list and left margin under Related Posts List’ is closed to new replies.