What are the Tag and Targtag attrributes set to in Collapse-Pro-Matic Options?
Also, pop us a link to your project.
You have the titles wrapped in <span> tags, which are inline elements.
You must use block elements like <div> or <h1>
I think the extra spacing looks good.
But if you want to get rid of it, there’s a break tag after each of your expands. Get rid of them!
.collapseomatic {
display: block;
padding: 0 0 0 16px;
}
Or use a block element as your title tag
Styling for [expand]:
titletag.collapseomatic{blah: deblah;}
Example:
h3.collapseomatic{
font-size: 1.3em;
}
Styling for [expandsub]:
.collapseomatic_content titletag{blah: deblah;}
Example:
.collapseomatic_content h3{
font-size: 1.1em;
}