Reply To: New default print() parameters?

PennController for IBEX Forums Support New default print() parameters? Reply To: New default print() parameters?

#6457
Jeremy
Keymaster

Hi Cory,

Yes, this is part of the new aesthetics conventions in PennController 1.9, basically all the elements are now displayed as flex on 100% of the page’s width

You can use center on any element to display it centered on the page, or directly manipulate its CSS or its container CSS using css or cssContainer

You can control the overall aesthetics of your experiment more globally by using a CSS file, as described on this documentation page, for example you could upload a PennController.css file with this to replicate the old aesthetics:

.PennController {
  max-width: 40em;
  left: 50vw !important;
  transform: translateX(-50%);
}

Let me know if you have questions

Jeremy