I added smart wizard to my page for a step plugin. But the progress is not working on top nav bar. Line doesn't appear I added "square" and added the necessary css to the code but not working
selected: 0,
// Initial selected step, 0 = first step
theme: 'square',
// Theme for the wizard, related css need to include for other than default theme
justified: true,
// Nav menu justification. true/false
autoAdjustHeight: true,
// Automatically adjust content height
backButtonSupport: true,
// Enable the back button support
enableUrlHash: true,
// Enable selection of the step based on url hash
transition: {
animation: 'fade',
// Animation effect on navigation, none|fade|slideHorizontal|slideVertical|slideSwing|css(Animation CSS class also need to specify)
speed: '400',
// Animation speed. Not used if animation is 'css'
easing: '',
// Animation easing. Not supported without a jQuery easing plugin. Not used if animation is 'css'
prefixCss: '',
// Only used if animation is 'css'. Animation CSS prefix
fwdShowCss: '',
// Only used if animation is 'css'. Step show Animation CSS on forward direction
fwdHideCss: '',
// Only used if animation is 'css'. Step hide Animation CSS on forward direction
bckShowCss: '',
// Only used if animation is 'css'. Step show Animation CSS on backward direction
bckHideCss: '' // Only used if animation is 'css'. Step hide Animation CSS on backward direction
},