1

Can I change the height of the jWizard jQuery plugin?

Ben
  • 157
  • 1
  • 1
  • 13
Lorenzo
  • 29,081
  • 49
  • 125
  • 222

2 Answers2

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!

antyrat
  • 27,479
  • 9
  • 75
  • 76
Matthias
  • 31
  • 1
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