Hi! You might be able to do this by adding some custom CSS via the global_css
config setting that formats the blocks in a grid with two columns. For example:
.prodigy-container {
display: grid;
grid-template-columns: 1fr 1fr; /* two equal columns */
}
So your first block would be the text in ner_manual
, and the second block would be an image, either embedded via the image
UI or custom HTML (which could also let you wrap the page in a scrollable container if needed).
You can also use the cardMaxWidth
theme setting to make the annotation card wider (e.g. "95%"
of the available space), which probably makes sense here if you're displaying the content in two columns.