Can I change the height of the jWizard jQuery plugin?
Asked
Active
Viewed 519 times
1
-
Can we please get a link to this plugin? – Surreal Dreams Nov 06 '10 at 04:41
-
Sure. I did a edit to my question. Sorry! – Lorenzo Nov 06 '10 at 10:16
2 Answers
3
A more elegant way, is to overwrite the css - Class within the specific html-file (instead of changing the default class):
For instance use this in your html header:
<style type="text/css" title="currentStyle">
@import "./css/JWizard.base.css";
.jw-steps-wrap {
height: 250px;
overflow: auto;
padding: .5em;
}
</style>
works like a charm!
3
Yes ofcourse u can, u will have to edit jWizard.base.css
search for .jw-steps-wrap in jWizard.base.css it will already have a height of 15em u can change it to ur desired value :)

Samuel Katz
- 24,066
- 8
- 71
- 57