mgsisk / webcomic

Comic publishing power for the web. Turn your WordPress-powered site into a comic publishing platform with Webcomic.
http://wordpress.org/plugins/webcomic
GNU General Public License v2.0
110 stars 29 forks source link

Widget list from vertical to horizontal #260

Closed dglisson closed 6 years ago

dglisson commented 8 years ago

I'm trying to figure out how to change the "Webcomic - Recent" widget from a vertical bulleted list to a horizontal list -- that is, each item floats to the right of the item previous. I'd also love to figure out how to remove the bullet points from each item in the list. Any ideas how I might approach this? Thanks!

ykyu commented 8 years ago

Put in your CSS:

ul.recent-webcomics { list-style: none; } ul.recent-webcomics li { float: left; padding-right: 15px; }

dglisson commented 8 years ago

that worked perfectly! Thank you so much!