formatting for chapter number and chapter title
Posted: Fri Jul 19, 2024 6:40 am
Hi,
I want my chapter number and title to display like this: and I used the following css codes to achieve it, as a predefined template is used:
However, in the output pdf, the chapter is still on the same line after the chapter number. Please help me to solve this problem. Many thanks!
I want my chapter number and title to display like this: and I used the following css codes to achieve it, as a predefined template is used:
Code: Select all
/* Chapter number formatting */
*[class ~= "topic/topic"][is-chapter]:not([is-part]) > *[class ~= "topic/title"]:before {
content: counter(chapter) ". ";
counter-increment: chapter;
display: inline-block;
text-align: right;
background-color: blue;
color: white;
font-size: 80pt;
padding: 10px;
margin-right: 10px;
}
/* Chapter title formatting */
*[class ~= "topic/topic"][is-chapter]:not([is-part]) > *[class ~= "topic/title"] {
display: block;
text-align: left;
color: blue;
font-size: 36pt;
margin-top: 20px;
clear: both;
}