Element Labels Duplicated
Posted: Fri Aug 08, 2025 8:39 pm
Hi There:
I found a suggestion in the forums for showing a prereq label in PDF output.
This worked:
When I tried to do something similar for <steps> the label is duplicated:
What have I done wrong?
I found a suggestion in the forums for showing a prereq label in PDF output.
This worked:
Code: Select all
.prereq::before {
content: "Before you begin";
display: block;
font-weight: bold;
font-size: 1em;
margin-top: 1em;
}
Code: Select all
.steps::before {
content: "Procedure";
display: block;
font-weight: bold;
font-size: 1em;
margin-top: 1em;
}