Quote:
Originally Posted by hobnail
If the above does what you want perhaps you could use an empty h2 tag
Code:
<h2 title="TOC stuff goes here" />
so then you don't need the CSS.
|
Yes, but I think the page still leaves a place holder for an empty tag. You would need to tell it not to allocate space for the tag.
Code:
<h2 style="display:none" title="TOC stuff goes here" />
or
<h2 style="display:none" title="TOC stuff goes here"></h2>
This is a technique I use regularly for Dedication, Copyright, etc. pages.