Reply To: putting a frame around element of a scale object

PennController for IBEX Forums Support putting a frame around element of a scale object Reply To: putting a frame around element of a scale object

#3664
Jeremy
Keymaster

Hi again,

The command .settings.cssContainer will not affect the elements within the container, but indeed the container itself. Using newScale(7).settings.cssContainter("border-style","solid 1px black") will only add a black border around the whole Scale element, not around the scale’s buttons.

For you to modify the scale’s buttons, you need to upload a file named PennController.css under css_includes with the right target, e.g.

td.PennController-Scale-scaleButton {
  padding:10 15 10 15;
  color:blue;
  border:1px solid gray;
}