How to Reduce padding around an IR column
Hello
Environment : Oracle XE 11gr2 : Windows7, APEX 4.1.1
I have created an IR report based on a modified DEPT table
CREATE TABLE DEPT_ADDITIONAL_ADDRESS
(
"DEPTNO" NUMBER(2,0)
, "DNAME" VARCHAR2(14 BYTE)
, "LOC" VARCHAR2(13 BYTE)
, "ADDITIONAL_ADDRESS" VARCHAR2(2000 BYTE)
)
In one of the rows the Additional_Address column contains a HTML table to display detail rows within a single column.
<table class="inlineTable">
<tr><td>SKILIO</td><td>focal@skilio.com</td></tr>
<tr><td>SKYPE</td><td>focal@skype.com</td></tr>
<tr><td>MSN MESSENGER</td><td>focal@msn.com</td></tr>
</table>
I use this CSS in the page header to remove the border and extra padding within the Additional_Address column
table.apexir_WORKSHEET_DATA table.inlineTable tr td
{
border:0px !important;
padding:0px; !important;
}
See example : http://apex.oracle.com/pls/apex/f?p=37866:1
Question :
The border is removed as expected, but the padding remains the same. How can I remove or reduce the padding within the Additional_Address column , to allow more room for similar rows??
Kind Regards
Ade