Also, it looks like the titles are not always properly aligned in relation to the thumbnails. For instance, sometimes the text of a title will fall below an image. You can check my website as an example (paulperkins.com). If you resize the browser window, you should see what I’m talking about.
Thanks,
Paul
Your theme will be responsible for handling the styling of this plugin. Unfortunately I cannot predict how every theme will handle it and is the biggest reason I have waited this long to add thumbnail functionality. Also, the numbers occur because the list is an ordered list (<ol>). You can also override the default browser styling of ordered lists by adding some css to your stylesheet.
Sounds good. For anyone wondering, I removed the numbers by adding this to my child theme’s CSS:
ol {
list-style-type: none;
}
If you don’t want that css to affect every ordered list in your theme (including your content), you should probably be more specific. like:
ol.gtc-list {
list-style-type: none;
}
Hi, great plugin! Thanks
both of the above css does not remove the number for me…I´m using genesis eleven40 theme. What am I doing wrong?