Hi - When I use this plugin, it works very well. However, it places a bullet point before the title. How can I prevent it from placing that bullet point?
Thanks,
Tim
http://wordpress.org/extend/plugins/display-posts-shortcode/
Hi - When I use this plugin, it works very well. However, it places a bullet point before the title. How can I prevent it from placing that bullet point?
Thanks,
Tim
http://wordpress.org/extend/plugins/display-posts-shortcode/
Some CSS like the following should help:
ul.display-posts-listing li { list-style-type: none; }
""Some CSS like the following should help:
ul.display-posts-listing li { list-style-type: none; }"
That didn't work. However, I accidentally discovered that
wrapper="div"
does what I wanted. I wouldn't have guessed that "wrapper" would mean "list type".
As described in the wiki, the wrapper is the type of HTML that should be used to display the listings. It can be an unordered list (ul), ordered list (ol), or divs (div) which you can then style yourself.
I didn't call it a "list type" since a div is not a list type, only unordered and ordered lists are list types.
You must log in to post.