I am using 2 regions with 1 region display selector to create some tab functionality between regions. See the following as an example: http://apex.oracle.com/pls/apex/f?p=19914:30 I used the following to remove the ‘Show All’ button http://apexplained.wordpress.com/2012/07/16/hide-the-show-all-tab-in-a-region-selector/
Mine looks the same as the example above however it doesnt have the rounded corners on the region display selector.
I wondered how you can apply the rounded corners to the display selector, increase the font size and height of the region display selector?
I’ve tried style=”” in the ‘Region Attributes’ of the Region display selector but no luck. When investigating my page in Firefox using Firebug the display selector is held in a DIV / in an UL list but i wouldnt know how to access those in the APEX builder.
The region display selector has rounded corners when using Chrome, but not in Internet Explorer.
Please could i have some help with my problem.
- Oracle Version: Oracle version 10.2.0.4.0
- Full APEX version: Application Express 4.1.1.00.23
- Browser(s) and version(s) used: Internet Explorer 7 & 8
- Theme: Simple Red
- Template(s): The standard templates with the Simple Red theme.
- Region/item type(s): 3 HTML pages each holding text box fields.
Thank you.
See example below of region display selector:

Example of region selector html from Simple Red theme
inspect style tab for
DIV
UL
LI
A
SPAN
So, this shows that a background image is used for the UL. This image’s dimensions are 1x18px according to firebug. Hovering over an item will set a different background image, as will a current region selection.
So, if you want a larger selection, use a larger image. Increase the div height. Set the correct styles for current/non-current items.
To increase font size, alter the css for the SPAN.
Borders are done with
border-radius: 8px 8px 8px 8px;which don’t work in IE.All css can be found in the theme css file in your apex_images folder: /i/themes/theme1/css/theme_4_0.css
Go to line 1316,
You can find everything you need there.
Don’t mess in that file though. If you will, make a backup. Work clean and override properly within a css of your own!