Change the height of jWizard
Can I change the height of the开发者_StackOverflow中文版 jWizard jQuery plugin?
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 :)
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!
精彩评论