Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How to Reduce padding around an IR column

ade_adekoyaOct 15 2012 — edited Oct 17 2012
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
This post has been answered by 959959 on Oct 16 2012
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 14 2012
Added on Oct 15 2012
9 comments
930 views