OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: uniquely identify the title in chunked html?


Hi,

I am fine-tuning the CSS styling of my chunked output HTML, and I would
like to uniquely identify the title in the document in order to style
it. Right now, chunking produces HTML pages with a <div
class="titlepage">, regardless of whether the section is the 'main'
section for that chunk, or one of many sub-sections that may be on a
page - is there a way to put an id on the outermost section in a given
chunk? e.g.

<html>
<head>
<title>The Actual Page Title</title>
</head>
<body>
<div class="section">
	<div id="actual-page-title">
		<h3 class="title">The Actual Page Title</h3>
	</div>
	<!-- content -->
	<div class="section">
		<div class="titlepage">
			<h4 class="title">A subSection title</h4>
		</div>
		<!-- subsection content -->
		<div class="section">
			<div class="titlepage">
				<h4 class="title">A sub-subSection
title</h4>
			</div>
		<!-- sub-subsection content -->
		</div>
	</div>
</div>
</body>
</html>

Apologies in advance if this is a FAQ. Using Xalan on WIN2000 with
docbook-xsl-1.65.1 stylesheets.

Cheers,

Chris





Chris Johnson

Web Developer
Capilano College
North Vancouver, Canada

604.986.1911 ext. 3455
cjohnson@capcollege.bc.ca


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]