Building on the Quick Start and Add Headers examples, you can change the appearance of the headers using CSS styles.
Drop down and copy markup to paste in <body> section
Markup |
Copy Code |
---|---|
<div id="wizard1"> <ol> <li><h1>Header 1</h1></li> <li><h1>Header 2</h1></li> <li><h1>Header 3</h1></li> </ol> <div>Page 1 content</div> <div>Page 2 content</div> <div>Page 3 content</div> </div> |
Drop down and copy styles to paste in <head> section
Styles |
Copy Code |
---|---|
<style type="text/css"> .wijmo-wijwizard .ui-button { background: CornflowerBlue; border-color: Black; border-width: medium; } .wijmo-wijwizard .ui-button-text { color: Black; font-family: Algerian; } .wijmo-wijwizard .ui-widget-header { background: CornflowerBlue; font-family: Algerian; border-color: Black; border-width: medium; } .wijmo-wijwizard-content { background-color: White; border-color: Black; border-width: medium; } .wijmo-wijwizard-steps h1 { color: Black; } </style> |