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

#9747
Jeremy
Keymaster

Hi,

The code above dates from 2019, there have been new releases of PennController since then, and Scale elements are no longer rendered as HTML table elements

Judging from the project you shared, it seems like you have come up with a solution, as you have this in global_z.css:

.PennController-Scale .option label {
    margin: 0em 1em; 
    font-size: 18px;
}

You could add a frame like this:

.PennController-Scale .option label {
    margin: 0em 1em; 
    font-size: 18px;
    border:1px solid gray;
}

Jeremy