helo,
i want to change the header/title name =Abnormal Involuntary Movement Scale (AIMS) according to on which page i am currently on.
change subtitle on basis of page
Show previous comments
(0)
Comments
(0)
Sign in to comment on this post
Answers approved by surveyjs Support
Hello Kartik,
If you wish to change a header according to the current page, you can define a header for an individual page. For this, use the page.title property.
If you wish to use the survey title appearance for a page title, you can apply corresponding styles to the h4
tag. For example:
CSS.sd-title.sd-page__title {
font-size: calc(4 * var(--base-unit, 8px));
font-weight: 700;
line-height: calc(5 * var(--base-unit, 8px));
color: var(--primary, #19b394);
}
Please let me know if you have any questions.