Hi there!
To remove the title, you have to choices:
- Go to Appeareance > Editor.
- Add the following to the end of the file:
.wpp-post-title {
display: none;
}
- Hit the Update file button to apply changes.
- Go to Widgets > WordPress Popular Posts and enable the “Use custom HTML Markup” option under HTML Markup settings.
- Set the Post HTML Markup field to
<li>{thumb} {stats}</li>
- Hit the Save button to apply changes.
The >> symbol must be something coming from your theme, you’ll have to ask your theme developer how to get rid of it or share your site’s URL here so I can take a look.
Thanks, the code worked 🙂 My URL is http://www.saltandlavender.com. I’m not sure what those >> are about!
One more question – is there a way I can center the thumbnails? Like so they’re in the middle of the column? Thanks 🙂
I’m not sure what those >> are about!
Just checked your site, and yes they’re being inserted by your theme. Follow the same instructions from the first solution but this time you’ll be adding this code:
.wpp-list li:before {
content: ""!important;
}
… and to center the thumbnails, try adding this as well:
.wpp-thumbnail {
display: block;
float: none;
margin: 0 auto 5px auto;
}
The removing the >> worked (thanks!) but they still don’t seem to be centered.
You’re right! This should work:
.wpp-thumbnail {
display: block!important;
float: none!important;
margin: 0 auto 5px auto!important;
}
It worked! Thanks! You’re smart 🙂
Don’t mention it. Enjoy the plugin! 🙂