I am using APEX 4.1.0 with Oracle 10g and Template 22.
I have some pages with interactive reports and I'd like to center the whole report on the page. By default it is aligned to the left. I tried putting <center> in the region header and </center> in the region footer. It centered the #apexir_data_panel part of the IR, but the #apexir_toolbar and the #apexir_control_panel were still on the left.
I tried adding the following to the css in the page template:
#apexir_toolbar, #apexir_control_panel, #apexir_data_panel, #apexir_worksheet, #apexir_report {
align:center;
}
But this had no effect. I still think that adjusting the page template is the way to go, but I'm not finding the right combination of css changes to make.