Reputation: 29427
Can I change the height of the jWizard jQuery plugin?
Upvotes: 1
Views: 525
Reputation: 31
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!
Upvotes: 3
Reputation: 24762
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 :)
Upvotes: 3