The header that I have is fairly complicated. I have a logo, and title box, and section heading image. In the section heading I have an h3 tag where I put the section title for that page.
If the document ends up being more than one page I need ", Continued" added to h3 tag.
This is how what I have going on already:
@page{
size: US-Letter portrait;
@top {
content: flow(header);
}
@bottom{
content: flow(footer);
}
}
div.header{
flow: static(header);
}
So I'm not sure how to go in and just add the text to the h3 tag
If the document ends up being more than one page I need ", Continued" added to h3 tag.
This is how what I have going on already:
@page{
size: US-Letter portrait;
@top {
content: flow(header);
}
@bottom{
content: flow(footer);
}
}
div.header{
flow: static(header);
}
So I'm not sure how to go in and just add the text to the h3 tag