Thomas Hunziker wrote: Custom CSS should always be done in one of the templates CSS files.
If you want to make sure it doesn't conflict with other extensions, you could specify the CSS rule a bit closer.
Each view from SermonSpeaker has a div container with a unique class. This allows you to apply CSS formats only for SermonSpeaker (or even specific views).
For example:
Code:
div.ss-sermons-container table.category{
width:100%;
}
Would only apply the formatting to the sermons list table.
That's perfect! Much appreciated!