Lorenzo
Lorenzo

Reputation: 29427

Change the height of jWizard

Can I change the height of the jWizard jQuery plugin?

Upvotes: 1

Views: 525

Answers (2)

Matthias
Matthias

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

Celmaun
Celmaun

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

Related Questions