Quote:
Originally Posted by flo_tm
After searching the forum and fiddling a little bit myself, I can't seem to solve two little problems: I want to customize the catalog creation so the publication date in parentheses is removed and every author gets some empty space before the start of his text block.
|
Instructions for creating a local copy of the catalog resources, from the first post in this thread (revised):
If you're referring to the year of publication appended to the book title in the 'Authors' list, it is always included. If you want a switch for that, create an enhancement request.
If you're referring to the year of publication inserted in the book's description page, open
template.xhtml in your text editor:
Change
Code:
<td class="date">{pubyear}</td>
to
Code:
<td class="date"></td>
To add extra space between author listings, open
stylesheet.css in your text editor:
Change
Code:
p.author_index {
font-size:large;
font-weight:bold;
text-align:left;
margin-top:0px; /* controls spacing between author groups */
margin-bottom:-2px;
text-indent: 0em;
}
to
Code:
p.author_index {
font-size:large;
font-weight:bold;
text-align:left;
margin-top:8px; /* controls spacing between author groups */
margin-bottom:-2px;
text-indent: 0em;
}
The
margin-top: rule controls the spacing between author groups. Any non-zero value will increase the space.
Quote:
By default, the publication date is always attached after the title - and this date is never correct.
|
I need an example of the incorrect date.
G