I use a program to design my themes and it automatically generates the stylesheets. So every time I change my theme, I would have to remember to manually add span.wpcf7-list-item { display: block; }
Would putting the following at the top of the form instead of the main stylesheet be considered an acceptable solution?
<style type="text/css">
span.wpcf7-list-item { display: block; }
</style>